我正在做一个条形码扫描仪应用程序。我正在尝试从 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"
}
}
]