dev-master
9999999-dev https://github.com/evert/google-api-php-clientGoogle API library for PHP
Apache 2.0
The Requires
- php >=5.3.0
- ext-curl *
by Evert Pot
google gdata
Google API library for PHP
I've never completed this, and have no interest in further maintaining it. Please don't start anything new based on this. I'm keeping this repository around for the people who may still need it., (*1)
The Google API Client Library enables you to work with Google APIs such as Buzz, Moderator, Tasks, or Latitude on your server., (*2)
This is a forked version from: * http://code.google.com/p/google-api-php-client/, (*3)
Current version is hosted here: * https://github.com/evert/google-api-php-client, (*4)
This project was forked to modernize the google api codebase a little bit. The following changes have been made:, (*5)
The existing documentation applies, just keep in mind that instead of class
like apiHttpRequest
, you must now use \GoogleApi\Io\HttpRequest
., (*6)
Project page:, (*7)
OAuth 2 instructions:, (*8)
Report a defect or feature request here:, (*9)
Subscribe to project updates in your feed reader:, (*10)
Supported sample applications: * http://code.google.com/p/google-api-php-client/wiki/Samples, (*11)
<?php include 'vendor/autoload.php'; $client = new \GoogleApi\Client(); $service = new \GoogleApi\Books\Service($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
Apache 2.0
google gdata