使用findItemsByKeywords操作从eBay API获得有限的结果

时间:2016-04-30 19:02:52

标签: json api ebay ebay-api

使用ebay api(findItemsByKeywords操作)来获取项目细节我发现只有页面编号为100的分页项目,所以如果我需要来自第101页的项目,我就无法获得它们。

findItemsByKeywords操作返回以下错误:

{"error":[{"errorId":["61"],"domain":["Marketplace"],"severity":["Error"],"category":["Request"],"message":["Page Limit exceeded. Items can be fetched only for the first 100 pages.."]

解决这个问题的想法是什么?

1 个答案:

答案 0 :(得分:2)

正如documentation中所述,您无法对过去100页进行分页。您可能希望查看增加每页返回的项目数(最多100个!)或使用item filtersaspect filters的组合来优化搜索并减少返回的项目数量。