Developer Technical Support
eBay also offers Premium Technical Support for more in-depth problem solving.
I just signed up ebay dev account, and create a keyset but, it seems like I can not change the application name though. is there anyway I can update the application name? instead of request another keyset?
I have used API Explorer to test the API in Sandbox. I call few endpoints OK but for getDefaultCategoryTreeId (I used https://api.sandbox.ebay.com/commerce/taxonomy/v1/get_default_category_tree_id?marketplace_id=EBAY_US), the Response Body always is ...
When attempting to issue a token on the production server, the issuance fails with the message 'invalid_client.' Please verify the reason for the token issuance failure. 1. Request URL https://api.sandbox.ebay.com/identity/v1/oauth2/token 2. Request ...
Such as the theme, after I call createOrReplaceInventoryItemGroup API, return a 500 error code, the body content is as follows:{"errors": [{"errorId": 25001,"domain": "API_INVENTORY","subdomain": "Selling","category": "SYSTEM","message": "A system er...
Using the API Explorer to test https://api.sandbox.ebay.com/sell/account/v1/fulfillment_policy?marketplace_id=EBAY_AU with correct token (with correct scope mentioned on the documentation page), I was given code 403 and error: User is not eligible fo...
Whenever I tried to publish an offer in the Sandbox "EBAY_DE" using REST API, I got system error with meaningless message. Did someone know how to resolve such issue ?"errors": [ { "errorId": 25001, "domain": "API_INVENTORY", "subdomain": "Selling", ...
Hello,I am using Ebay's Sandbox Trading API to run "GetCategoryFeatures" but last week it stopped working (only in Sandbox), logging this error: { "GetCategoryFeaturesResponse": { "$": { "xmlns": "urnapis:eBLBaseComponents" }, "Timestamp": [ "2024-02...
I've logged into the sandbox environment as I want to see the inventory item i've just posted, but every link just gives me a timeout. MyEbay/Summary: pages.sandbox.ebay.co.uk took too long to respond.MyEbay/Selling: my.sandbox.ebay.co.uk took too lo...
As a commercial seller, we would like to use Python to download fulfillment information for analysis and reporting. Is it possible to add scopes to our Production Client Credential Grant Type? Please advise.Thank you!
I was able to get "code" using client_id and redirect_uri successfully. But when I try to use this "code" while sending request to "authorization_code" endpoint I got error below. Error:{'error': 'invalid_grant', 'error_description': 'the provided au...
import requestsimport base64import urllib.parse# Replace with your actual credentialsclientID = ''clientSecret = ''authorization_code = ''redirect_uri = ''# eBay sandbox OAuth token endpointtoken_url = 'https://api.ebay.com/identity/v1/oauth2/token'#...
Every time I login to https://sandbox.ebay.com/ and try to navigate to selling area of the sandbox it redirect me to live ebay login page?
I finished the process of setting up an endpoint to receive deletion requests. eBay's site said that I successfully verified using that endpoint, everything is good... but I still can't get my keyset for production. Is there a further verification pr...
Hey, I'm trying to upload products catalog with products having multiple variants and I always get: "No SKUs in the group are available to publish." I'm not sure what I'm doing wrong, thus any suggestions? All of my products have "Variation Group ID"...
Now I can get access token by client credentials grant flow.Can I use this token for all Restful apis such as browser, inventory, offer api...?