我们如何使用Amazon's Product Advertising API检索超过十大畅销书。

通过深入研究他们的API,我发现了可能需要进行的2种操作:

首先是BrowseNodeLookup,它可以成功检索前10名畅销书,但没有ItemPage参数。

第二个是ItemSearch,它似乎具有&ItemPage = 2参数,&ResponseGroup = SalesRank和&Sort = salesrank。但是排序不起作用。以下是示例请求:

> http://webservices.amazon.com/onca/xml?Service=AWSECommerceService
> &Operation=ItemSearch
> &SubscriptionId=<subscription_id>
> &AssociateTag=<associate_tag>
> &Version=2011-08-01
> &SearchIndex=Electronics
> &BrowseNode=2407747011
> &ItemPage=2
> &ResponseGroup=SalesRank
> &Sort=salesrank

最佳答案

不幸的是,按照亚马逊的政策,每个队列最多只能收到10项物品。

10-07 15:39