desmond/google-books

Google Books API

dev-master 2015-08-16 00:24 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:42:42 UTC


README

PHP 的 Google Books API >= 5.3.0。目前它仅支持通过 ISBN 搜索特定书籍。

用法

$key = 'YOUR_API_KEY';
$query = '084930315X';  // 10 or 13 digits ISBN

$book = new GoogleBooks\GoogleBooks($key);

if ($book->searchByISBN($query))
{
    // success
    $title = $book->getTitle();
}
else
{
    // error
}