eBay API ("buy now" vs "auction"): How to only get items that are not on auction, but can be bought now? [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 year开发者_开发技巧s ago.
Improve this questionHow to only get items that are not on auction, but can be bought now?
Use the findItemsAdvanced GET request. You can specify an item filter:
http://svcs.ebay.com/services/search/FindingService/v1
?OPERATION-NAME=findItemsAdvancded
&SERVICE-VERSION=1.0.0
&GLOBAL-ID=<global id>
&SECURITY-APPNAME=<your app id>
&keywords=<keywords you are searching for>
&paginationInput.entriesPerPage=<items per page>
&sortOrder=BestMatch
&itemFilter(0).name=ListingType
&itemFilter(0).value=FixedPrice
&itemFilter(1).name=MinPrice
&itemFilter(1).value=<min price>
&itemFilter(2).name=MaxPrice
&itemFilter(2).value=<max price>
...
http://svcs.ebay.com/services/search/FindingService/v1
?OPERATION-NAME=findItemsAdvancded
&SERVICE-VERSION=1.0.0
&GLOBAL-ID=<global id>
&SECURITY-APPNAME=<your app id>
&keywords=<keywords you are searching for>
&paginationInput.entriesPerPage=<items per page>
&sortOrder=BestMatch
&itemFilter(0).name=ExpeditedShippingType
&itemFilter(0).value=OneDayShipping
&itemFilter(1).name=MinPrice
&itemFilter(1).value=<min price>
&itemFilter(2).name=MaxPrice`enter code here`
&itemFilter(2).value=<max price>
&itemFilter(3).name=ListingType&itemFilter(3).value(0)=FixedPrice&itemFilter(3).value(1)=StoreInventory
精彩评论