https://github.com/msilva88-dev/google-api-php-client
Google APIs Client Library for PHP; This repository is deprecated, please see the latest on GitHub (https://github.com/google/google-api-php-client)
https://github.com/msilva88-dev/google-api-php-client
api google google-api-client google-api-php-client php
Last synced: 5 months ago
JSON representation
Google APIs Client Library for PHP; This repository is deprecated, please see the latest on GitHub (https://github.com/google/google-api-php-client)
- Host: GitHub
- URL: https://github.com/msilva88-dev/google-api-php-client
- Owner: msilva88-dev
- License: apache-2.0
- Created: 2025-07-16T16:00:10.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-07-16T19:04:36.000Z (11 months ago)
- Last Synced: 2025-08-20T21:55:16.615Z (10 months ago)
- Topics: api, google, google-api-client, google-api-php-client, php
- Language: PHP
- Homepage: https://code.google.com/archive/p/google-api-php-client/
- Size: 5.53 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Google APIs Client Library for PHP
=====================================
== Description
The Google API Client Library enables you to work with Google APIs such as Google+, Drive, Tasks, or Latitude on your server.
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:
http://code.google.com/p/google-api-php-client/wiki/OAuth2
Report a defect or feature request here:
http://code.google.com/p/google-api-php-client/issues/entry
Subscribe to project updates in your feed reader:
http://code.google.com/feeds/p/google-api-php-client/updates/basic
Supported sample applications:
http://code.google.com/p/google-api-php-client/wiki/Samples
== Basic Example
'free-ebooks');
$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
foreach ($results['items'] as $item) {
print($item['volumeInfo']['title'] . '
');
}