2
當使用URL格式與eBay的API進行交互時,MinPrice項目過濾器可以工作,但MaxPrice不是。我的猜測是它與枚舉有關,但我不完全明白這是如何工作的,我不知道要改變它。代碼如下。Ebay API MinPrice的作品,MaxPrice不。
<script src=http://svcs.ebay.com/services/search/FindingService/v1?SECURITY-APPNAME=*APP ID GOES HERE*&OPERATION-NAME=findItemsByKeywords&SERVICE-VERSION=1.0.0&RESPONSE-DATA-FORMAT=JSON&callback=_cb_findItemsByKeywords&REST-PAYLOAD&sortOrder=PricePlusShippingLowest&paginationInput.entriesPerPage=6&outputSelector=AspectHistogram&itemFilter(0).name=Condition&itemFilter(0).value(0)=New&itemFilter(1).name=MaxPrice&itemFilter(1).value=201.00&itemFilter(0).paramName=Currency&itemFilter(0).paramValue=USD&itemFilter(1).name=MinPrice&itemFilter(1).value=200.00&itemFilter(1).paramName=Currency&itemFilter.name=ListingType&itemFilter.value=FixedPrice&itemFilter(1).paramValue=USD&keywords=iphone%205%2016gb%20unlocked>
</script>
這解決了問題,謝謝!你會碰巧知道如何讓它顯示更高分辨率的縮略圖嗎? – TheDudeGuy
您可以通過在請求中使用outputSelector字段來獲得更大的縮略圖。傳遞值GalleryInfo,你會得到三個大,中,小的縮略圖。您可以將其他值傳遞到該字段以獲取尺寸爲800x800的圖像(如果它們存在)。請參閱以下鏈接瞭解更多信息。 http://developer.ebay.com/DevZone/finding/CallRef/findItemsByKeywords.html#Request.outputSelector –
我將'outputSelector = GalleryInfo'傳遞給了url,但這似乎不起作用,他們的教程isn在這件事上不太清楚。 GalleryInfo後需要添加某種itemFilter嗎? – TheDudeGuy