English 中文(简体)
eBay API 查找某些类别的项目高级请求返回0结果
原标题:eBay API findItemsAdvanced request returns 0 results for some categories
  • 时间:2012-05-23 16:08:25
  •  标签:
  • ebay-api

这实在是奇怪的行为。 当我尝试使用 findtemsAdvanced 进行搜索时, 使用以下XML( 编号为267) 来获取书类中的项目( 编号为 267) :

<findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services">
<categoryId>267</categoryId>
<descriptionSearch>true</descriptionSearch>
<paginationInput><entriesPerPage>100</entriesPerPage><pageNumber>1</pageNumber></paginationInput>
<sortOrder>BestMatch</sortOrder>
</findItemsAdvancedRequest>

我得到了0个项目的结果回应。但是如果我只是把类别编号改为其他类教科书教育(第2228类),例如:

<findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services">
<categoryId>2228</categoryId>
<descriptionSearch>true</descriptionSearch>
<paginationInput><entriesPerPage>100</entriesPerPage><pageNumber>1</pageNumber></paginationInput>
<sortOrder>BestMatch</sortOrder>
</findItemsAdvancedRequest>

All is fine and I get a response search result with 100 items. What is the cause of this? Have Books category any specifics that I m missing?

有没有人能测试一下 看看这罕见的行为 是否不属于我的应用程序的独家吗?

最佳回答

正在真正解决问题。 我真的不知道为什么 API 为某些类别打通电话, 却不为其他类别工作, 但人们可以在http://developer.ebay.com/devzone/covering/callref/findroundtectionsAdvanced.html#requent. descriptionSearch 上读到请求xml标记的解释, 确实与分类搜索无关。

感谢对埃斯瓦拉·拉杰什的回答。

问题回答

暂无回答




相关问题
Unserializing an API return object (PHP/Ebay API)

I have been working with the Ebay api for a project and have found it great. I have however found a problem now, more PHP related. When I read my items from Ebay, I store a bunch of details in the ...

how to add a new item to ebay using ebay API [closed]

i want to add an item to ebay using ebay API and PHP i read their website for hours and i m lost. i created a developer account. but what should i do after that? i read about "Add item" call http://...

Why can t I send SOAP requests to Ebay finding API?

This is my code: <?php error_reporting(E_ALL); //new instance of soapClient pointing to Ebay finding api $client = new SoapClient("http://developer.ebay.com/webservices/finding/latest/...

eBay managing listings via API

Using PHP5, how can I use the eBay API to set all my 2000+ eBay Store items on sale except for a specific set of 45 items? I can t find a way to do this on eBay s website, and would prefer an API ...

eBay s Large Merchant Services not returning a SKU

I am specifying a SKU in my AddFixedPriceItem requests but the response does not come back with a SKU (although SKU is specified in the schema). This is a problem because I am using Large Merchant ...

热门标签