我正在开发一个eBay应用程序,该应用程序正在检索从ebay出售商品到我的网站的ebay用户。我正在使用以下API调用来检索运行良好的用户列表
<?xml version="1.0" encoding="utf-8"?>
<GetSellerListRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>USER_TOKEN</eBayAuthToken>
</RequesterCredentials>
<CategoryID>33657</CategoryID>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<GranularityLevel>Coarse</GranularityLevel>
<StartTimeFrom>2018-06-28T21:59:59.005Z</StartTimeFrom>
<StartTimeTo>2018-08-26T21:59:59.005Z</StartTimeTo>
<IncludeWatchCount>true</IncludeWatchCount>
<Pagination>
<EntriesPerPage>200</EntriesPerPage>
</Pagination>
</GetSellerListRequest>
在上述API调用的当前情况下,只接受一个类别ID即可根据该类别检索卖方列表。
我正在寻找如何检索具有多个类别ID的卖家列表项目。有什么办法可以在上述API调用中添加多个类别ID,以根据多个类别检索项目,请对此提供帮助 并预先感谢
答案 0 :(得分:0)
可以使用eBay的finder API部分中的findItemsAdvanced API来实现
https://developer.ebay.com/DevZone/finding/CallRef/findItemsAdvanced.html#Request.categoryId
您可以向查询添加一个或多个类别ID。要限制商品仅来自您的商店,您还应该添加卖方过滤器示例
itemFilter(1).name =卖方&itemFilter(1).value(0)=商店名称
希望这可以解决您的问题