Google API PHP Client Google API 调用开源项目

我要开发同款
匿名用户2015年04月16日
112阅读
开发技术PHP
所属分类开发工具、PHP开发工具
授权协议Apache

作品详情

GoogleAPIPHPClient库能让你在Google+、Drive、或者你服务器上的YouTube上使用GoogleAPI。

示例代码:

<?php  require_once 'google-api-php-client/src/Google/autoload.php'; // or wherever autoload.php is located$client = new Google_Client();  $client->setApplicationName("Client_Library_Examples");  $client->setDeveloperKey("YOUR_APP_KEY");  $service = new Google_Service_Books($client);  $optParams = array('filter' => 'free-ebooks');  $results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);  foreach ($results as $item) {    echo $item['volumeInfo']['title'], "<br /> \n";  }
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论