关于isbn的Google图书api查询工作方式的困惑

时间:2019-09-07 16:59:06

标签: google-api google-books

基本上我想按isbn查询google books api,我希望它返回一个结果或根本没有结果,但是不是(例如:https://www.googleapis.com/books/v1/volumes?q=1234567890+isbn)。

这将返回类似的内容:

"kind": "books#volumes",
"totalItems": 497,
"items":[
{
    ...
    "industryIdentifiers": [
    {
        "type": "ISBN_13",
        "identifier": "9780735552876"
    },
    {
        "type": "ISBN_10",
        "identifier": "0735552878"
    }
    ],
    ...
}
{
    ...
    "industryIdentifiers": [
    {
        "type": "ISBN_13",
        "identifier": "9780735588738"
    },
    {
        "type": "ISBN_10",
        "identifier": "0735588732"
    }
    ],
    ...
}
...
]

我想知道使用isbn查询是否可以返回单个结果或根本没有结果。

0 个答案:

没有答案