Get support for Nyholm/google-api-php-client

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

Nyholm/google-api-php-client

Google APIs Client Library for PHP

This is version 0.6.2 of the Google Api. If you want to use the lastes version of this lib checkout this repo.

If you want a symfony2 bundle for this lib, check out my other repo: https://github.com/HappyR/GoogleApiBundle

Description

The Google API Client Library enables you to work with Google APIs such as Google+, Drive, Tasks, or Latitude on your server.

This is a forked version from 0.6.2:

Current version is hosted here:

Are you using Symfony2? Check out the Symfony2 bundle that uses this lib.

Fork information

This project was forked to modernize the google api codebase a little bit. The following changes have been made:

  • Gotted rid of all require() statements. An autoloader is now required
  • Renamed all classes. Everything is now in a GoogleApi namespace.
  • Added composer package information
  • Gotted rid of automatically executing code.

The existing documentation applies, just keep in mind that instead of class like apiHttpRequest, you must now use \GoogleApi\Io\HttpRequest.

== Requirements:

  • PHP 5.2.x or higher [http://www.php.net/]
  • PHP Curl extension [http://www.php.net/manual/en/intro.curl.php]
  • PHP JSON extension [http://php.net/manual/en/book.json.php]

Project page: http://code.google.com/p/google-api-php-client

OAuth 2 instructions:

Report a defect or feature request here:

Subscribe to project updates in your feed reader:

Supported sample applications:

== Basic Example

  <?php
  require_once 'path/to/src/Google_Client.php';
  require_once 'path/to/src/contrib/apiBooksService.php';

  $client = new Google_Client();
  $service = new Google_BooksService($client);

  $optParams = array('filter' => 'free-ebooks');
  $results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);

  foreach ($results['items'] as $item) {
    print($item['volumeInfo']['title'] . '<br>');
  }
Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2