亚马逊产品广告API总是返回未定义的结果

时间:2015-08-26 12:55:09

标签: amazon-product-api

我正在尝试在我的数据库中使用amazon产品广告API查找产品详细信息。但是,响应始终未定义。我做错了吗?

var amazon = require('amazon-product-api');

var client = amazon.createClient({
  awsId: "my aws id",
  awsSecret: "my secret key",
  awsTag: "my aws tag"
});

client.itemLookup({  
    responseGroup: 'Images,ItemAttributes,Offers,EditorialReview',
    IdType: 'ASIN',
    ItemId: "B00UTKTX36"
}).then(function (results){
    console.log("results", results);
}).catch(function(err){
    console.log(err.Error[0].Message);
});

1 个答案:

答案 0 :(得分:1)

两件事 -
1. B00UTKTX36不再是有效的ASIN(至少截至目前)http://www.amazon.com/dp/B00UTKTX36
2.对{ASIN'的ItemLookup操作不应包含SearchIndex参数。因此,在node_modules/amazon-product-api/lib/utils.js中对此行https://github.com/t3chnoboy/amazon-product-api/blob/master/lib/utils.js#L57进行评论,您就可以了。