GoogleAPIPHPCliet库能让你在Google+、Drive、或者你服务器上的YouTube上使用GoogleAPI。
示例代码:
<?php require_oce 'google-api-php-cliet/src/Google/autoload.php'; // or wherever autoload.php is located$cliet = ew Google_Cliet(); $cliet->setApplicatioName("Cliet_Library_Examples"); $cliet->setDeveloperKey("YOUR_APP_KEY"); $service = ew Google_Service_Books($cliet); $optParams = array('filter' => 'free-ebooks'); $results = $service->volumes->listVolumes('Hery David Thoreau', $optParams); foreach ($results as $item) { echo $item['volumeIfo']['title'], "<br /> \"; }
评论