使用amazon-product-api获取产品的定价信息

时间:2016-05-21 11:43:04

标签: node.js amazon-web-services npm amazon amazon-product-api

我正在尝试使用amazon-product-API在亚马逊上获取产品的EMI信息

我可以获得定价详情,如下所示:

client.itemSearch({
            keywords: self.keyword,
            itemPage: 1,
            sort: popularityrank,
            responseGroup: 'ItemAttributes,Offers,Images'
        }, function(error, results, response) {
            // - - - 
            var price = results.ItemAttributes.ListPrice //this will give price details
           // - - -
        });

但是我无法弄清楚如何获得EMI细节。我搜索了很多,但都是徒劳的。

已经尝试this,但它没有给我 EMI信息

如果有人可以帮我解决这个问题,那就太好了。

0 个答案:

没有答案