Google books API searching by ISBN

后端 未结 3 895
灰色年华
灰色年华 2020-12-13 02:08

I am trying to figure out how to search for a book by ISBN using the Google Books API. I need to write a program that searches for an ISBN then prints out the title, author,

3条回答
  •  心在旅途
    2020-12-13 02:50

    Are you using the deprecated data API?

    With Books API v1 (from Labs) you could use the query

    https://www.googleapis.com/books/v1/volumes?q=isbn:
    

    for example

    https://www.googleapis.com/books/v1/volumes?q=isbn:0735619670

    to query a book by its ISBN.

    You may want to look at Googles example code: BooksSample.java

提交回复
热议问题