Création des Logiciels de gestion d'Entreprise, Création et référencement des sites web, Réseaux et Maintenance, Conception
Création des Logiciels de gestion d'Entreprise, Création et référencement des sites web, Réseaux et Maintenance, Conception
curl "http://google-api-php-client.googlecode.com/files/google-api-php-client-0.4.1.tar.gz" -OHere is some sample code that demonstrates how to use the library and the Google Books API to search for and print the titles of free ebooks by Henry David Thoreau:
tar -xvf google-api-php-client-0.4.1.tar.gz
cd google-api-php-client/examples/
<?phpLet us know what you think. We would love to hear your feedback and are always happy to help you out on the forums.
require_once 'path/to/src/apiClient.php';
require_once 'path/to/src/contrib/apiBooksService.php';
$client = new apiClient();
$client->setApplicationName("My_Books_API_Example");
$service = new apiBooksService($client);
$optParams = array('filter' => 'free-ebooks');
$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
foreach ($results['items'] as $item) {
print($item['volumeInfo']['title'] . '<br>');
}