softlabs / google-api-php-client
此包已被弃用且不再维护。未建议替代包。
PHP的Google API库
dev-master
2013-10-28 15:16 UTC
Requires
- php: >=5.3.0
- ext-curl: *
- ext-json: *
This package is not auto-updated.
Last update: 2024-02-17 12:05:21 UTC
README
== 描述 Google API客户端库使您能够在与服务器上的Google API(如Google+、Drive、Tasks或Latitude)进行交互。
要求:PHP 5.2.x或更高版本 [https://php.ac.cn/] PHP Curl扩展 [https://php.ac.cn/manual/en/intro.curl.php] PHP JSON扩展 [https://php.ac.cn/manual/en/book.json.php]
项目页面: http://code.google.com/p/google-api-php-client
OAuth 2说明: http://code.google.com/p/google-api-php-client/wiki/OAuth2
在此处报告缺陷或功能请求: http://code.google.com/p/google-api-php-client/issues/entry
在您的Feed阅读器中订阅项目更新: http://code.google.com/feeds/p/google-api-php-client/updates/basic
支持的示例应用程序: http://code.google.com/p/google-api-php-client/wiki/Samples
== 基本示例
'free-ebooks'); $results = $service->volumes->listVolumes('Henry David Thoreau', $optParams); foreach ($results['items'] as $item) { print($item['volumeInfo']['title'] . ''); }