skip to Main Content

EBay API: getMostWatchedItems returning RequestError

Based on the API documentation of EBay: https://developer.ebay.com/devzone/merchandising/docs/CallRef/getMostWatchedItems.html I made the following call: <?xml version="1.0" encoding="UTF-8"?> <getMostWatchedItems xmlns="http://www.ebay.com/marketplace/services"> <maxResults>3</maxResults> </getMostWatchedItems> With the following headers: X-EBAY-API-COMPATIBILITY-LEVEL 967 X-EBAY-API-CALL-NAME getMostWatchedItems X-EBAY-API-SITEID 15 Content-Type text/xml But it returns the following response: <?xml version="1.0"…

VIEW QUESTION

Error while generating access_token using Ebay 's REST API – Python requests – Ebay API

I'm trying to use the ebay REST-API for the first. I am simply trying to generate an access_token using the client credentials grant-request. I followed the instructions here https://developer.ebay.com/api-docs/static/oauth-client-credentials-grant.html HTTP method: POST URL (Sandbox): https://api.sandbox.ebay.com/identity/v1/oauth2/token HTTP headers: Content-Type = application/x-www-form-urlencoded…

VIEW QUESTION

eBay OAuth cannot fetch token – Ebay API

I am trying to integrate an eBay SDK developed by David Sadler which is in GitHub. But I got stuck on connection part itself. I am getting app token with http://localhost/ebay-sdk-examples/oauth-tokens/01-get-app-token.php with my production credentials. But when I hit, http://localhost/ebay-sdk-examples/oauth-tokens/02-get-user-token.php…

VIEW QUESTION

get item detail through ebay api

I am aim to get item detail (name, category, even price) through ebay api, JSON format. Here is a sample item searched by ebay, EAN barcode 0705632085943: https://www.ebay.co.uk/sch/i.html?_osacat=0&_odkw=0705632085943&_from=R40&_trksid=m570.l1313&_nkw=0705632085943&_sacat=0 I had read this page released by ebay: getProductDetails : https://developer.ebay.com/devzone/product/CallRef/getProductDetails.html So…

VIEW QUESTION

Ebay API – Capture python value from multi-nested dictionary

I'm having some problems obtaining a variable from a multi-nested dictionary. I'm trying to grab CategoryParentID with the following snippet: print dicstr['CategoryParentID'] while my dictionary looks like this: { "CategoryCount": "12842", "UpdateTime": "2018-04-10T02:31:49.000Z", "Version": "1057", "Ack": "Success", "Timestamp": "2018-07-17T18:33:40.893Z", "CategoryArray":…

VIEW QUESTION
Back To Top
Search