2017 © Pedro Peláez
 

library google-api-php-client

Google API library for PHP (with namespaces). This packet is maintained! Version 0.6.2 of original code.

image

nyholm/google-api-php-client

Google API library for PHP (with namespaces). This packet is maintained! Version 0.6.2 of original code.

  • Thursday, January 23, 2014
  • by Nyholm
  • Repository
  • 0 Watchers
  • 0 Stars
  • 9,855 Installations
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

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., (*1)

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

Description

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)

Fork information

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

  • 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., (*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>');
  }

The Versions

23/01 2014

dev-master

9999999-dev http://nyholm.github.io/google-api-php-client

Google API library for PHP (with namespaces). This packet is maintained! Version 0.6.2 of original code.

  Sources   Download

Apache 2.0

The Requires

  • php >=5.3.0
  • ext-curl *

 

google gdata