我正在做条形码扫描器应用程序。我正在尝试从Android应用程序中的条形码ISBN号获取Google书籍详细信息。我也成功地从API结果中获得了所有书籍细节。但是,如果我尝试从API结果访问购买链接,我无法访问该书的购买链接。它说404错误。任何人都可以帮助我,如何访问购买链接购买书籍。提前谢谢。
以下是从以下结果获得的图书的购买链接:
http://books.google.co.in/books?id=xqxBtXmxqV4C&dq=isbn:9781849699327&hl=&buy=&source=gbs_api
以下是API结果:
"saleInfo": {
"country": "IN",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 162.0,
"currencyCode": "INR"
},
"retailPrice": {
"amount": 113.4,
"currencyCode": "INR"
},
"buyLink": "http://books.google.co.in/books?id=xqxBtXmxqV4C&dq=isbn:9781849699327&hl=&buy=&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 1.62E8,
"currencyCode": "INR"
},
"retailPrice": {
"amountInMicros": 1.134E8,
"currencyCode": "INR"
}
}
]