Google API PHP Client

程序名称:Google API PHP Client

授权协议: Apache

操作系统: 跨平台

开发语言: PHP

Google API PHP Client 介绍

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

示例代码:

<?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";  
}

Google API PHP Client 官网

https://github.com/google/google-api-php-client

相关编程语言

提到 EclEmma 首先就要说到著名的 Java 覆盖测试工具...
Solex是一个WEB应用测试用的Eclipse插件。Solex可以...
Apache为我们提供了一个强大的工具 Cactus!它是一套...
Google C Testing Framework是Google公司用来在各种...
JdbcProxy 是 SourceForge 上一个开源的 Java 项目,...
Ripplet是一款负载测试工具,特征如下: 1)基于Apa...