skip to Main Content

Ebay API with description

How do I get the Ebay API to return a description? I have some code that makes an API call as follows: http://svcs.ebay.com/services/search/FindingService/v1? callname=findItemsAdvanced& responseencoding=XML& appid=appid& siteid=0& version=525& QueryKeywords=keywords; It returns items, but it's missing the full description text. I'm…

VIEW QUESTION

Getting store item description – Ebay API

I am currently using ebay api to retrieve data about store inventory listings: http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsByCategory &SERVICE-VERSION=1.11.0 &SECURITY-APPNAME=ENTER-APP-ID-HERE &RESPONSE-DATA-FORMAT=XML &categoryId=307 &paginationInput.entriesPerPage=100 &paginationInput.pageNumber=1 &outputSelector=CategoryHistogram&sortOrder=EndTime&itemFilter%280%29.name=MinPrice&itemFilter%280%29.value=0.01&itemFilter%281%29.name=MaxPrice&itemFilter%281%29.value=10000 &itemFilter%282%29.name=ListingType&itemFilter%282%29.value=StoreInventory&itemFilter%283%29.name=LocatedIn&itemFilter%283%29.value=US &itemFilter%284%29.name=EndTimeFrom&itemFilter%284%29.value=2011-08-06T07:52:48.000Z &itemFilter%285%29.name=EndTimeTo&itemFilter%285%29.value=2011-08-30T07:52:48.000Z I would like to know if there is a way to return the item description as…

VIEW QUESTION

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 SOAP API – Missing SOA operation name header – Ebay API

I am trying to invoke eBay's findItemsByKeywords method and I get Server raised fault: 'Missing SOA operation name header' My code is following: from config import * # url = 'http://developer.ebay.com/webservices/latest/ebaySvc.wsdl' # url = 'http://svcs.ebay.com/services/search/BestMatchItemDetailsService/v1?wsdl' url = 'http://developer.ebay.com/webservices/finding/latest/FindingService.wsdl' from suds.client…

VIEW QUESTION
Back To Top
Search