skip to Main Content

Ebay API – Returning auctions ending later than 10 days

My api/xml is working fine with returning auctions ending from present until 10 days but is not working for listings ending after 10 days: http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsByCategory&SERVICE-VERSION=1.11.0&SECURITY-APPNAME=AlexGo:::::::hiddin::::821eee8&RESPONSE-DATA-FORMAT=XML&categoryId=307&paginationInput.entriesPerPage=100&paginationInput.pageNumber=1&outputSelector=CategoryHistogram&sortOrder=EndTime&itemFilter(0).name=MinPrice&itemFilter(0).value=.01&itemFilter(1).name=MaxPrice&itemFilter(1).value=1000&itemFilter(2).name=ListingType&itemFilter(2).value=AuctionWithBIN&itemFilter(3).name=LocatedIn&itemFilter(3).value=US&itemFilter(4).name=EndTimeFrom&itemFilter(4).value=2011-08-24T10:23:00.000Z&itemFilter(5).name=EndTimeTo&itemFilter(5).value=2011-08-31T10:23:00.000Z Here is how I am downloading results: public string DownLoad(string url) { // used to…

VIEW QUESTION

Ebay API – **kwargs vs 10 arguments in a python function?

I am starting out with python and trying to construct an XML request for an ebay web service: Now, my question is: Say, this is my function: def findBestMatchItemDetailsAcrossStores(): request = """<?xml version="1.0" encoding="utf-8"?> <findBestMatchItemDetailsAcrossStoresRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <siteResultsPerPage>50</siteResultsPerPage> <entriesPerPage>50</entriesPerPage> <ignoreFeatured>true</ignoreFeatured> <keywords>ipod</keywords>…

VIEW QUESTION
Back To Top
Search