dev-master
9999999-dev http://nyholm.github.io/google-api-php-clientGoogle API library for PHP (with namespaces). This packet is maintained! Version 0.6.2 of original code.
Apache 2.0
The Requires
- php >=5.3.0
- ext-curl *
google gdata
Google API library for PHP (with namespaces). This packet is maintained! Version 0.6.2 of original code.
This is version 0.6.2 of the Google Api. If you want to use the lastes version of this lib checkout this repo., (*1)
If you want a symfony2 bundle for this lib, check out my other repo: https://github.com/HappyR/GoogleApiBundle, (*2)
The Google API Client Library enables you to work with Google APIs such as Google+, Drive, Tasks, or Latitude on your server., (*3)
This is a forked version from 0.6.2: * http://code.google.com/p/google-api-php-client/, (*4)
Current version is hosted here: * https://github.com/nyholm/google-api-php-client, (*5)
Are you using Symfony2? Check out the Symfony2 bundle that uses this lib. * http://developer.happyr.se/symfony2-bundles/google-api-bundle, (*6)
This project was forked to modernize the google api codebase a little bit. The following changes have been made:, (*7)
The existing documentation applies, just keep in mind that instead of class
like apiHttpRequest
, you must now use \GoogleApi\Io\HttpRequest
., (*8)
== 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], (*9)
Project page: http://code.google.com/p/google-api-php-client, (*10)
OAuth 2 instructions: * http://code.google.com/p/google-api-php-client/wiki/OAuth2, (*11)
Report a defect or feature request here: * http://code.google.com/p/google-api-php-client/issues/entry, (*12)
Subscribe to project updates in your feed reader: * http://code.google.com/feeds/p/google-api-php-client/updates/basic, (*13)
Supported sample applications: * http://code.google.com/p/google-api-php-client/wiki/Samples, (*14)
== Basic Example, (*15)
<?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>'); }
Google API library for PHP (with namespaces). This packet is maintained! Version 0.6.2 of original code.
Apache 2.0
google gdata