For questions relating to eBay's Software Development Kit (SDK). When using this tag also provide the appropriate language tag, such as; python, java, etc.
Questions tagged [ebay-sdk]
112 questions
2
votes
1 answer
eBay Marketplace account deletion endpoint validation failed
Marketplace account deletion endpoint validation failed. Click here to learn more about setting up an endpoint.
I have created an API method to respond challenge response to eBay. But validation is failing I am not sure what wrong I am doing…

Sharad
- 1,192
- 1
- 8
- 20
2
votes
0 answers
How does the Offer Quantity and Inventory Quantity change?
I am trying to create an Inventory Management application using the Ebay Sell APIs. When adding a product, I first add some quantity (say 100 T-Shirts) to the Inventory. Next, I make this inventory live by creating an offer and specifying the offer…

Kav
- 21
- 5
2
votes
2 answers
To get the weight of product in ebay api
Currenly i am working in ebaysdk. I am facing the problem which is the weight of the product. how can i can get product weight ? I used trading api but most of weight of the products equal to 0. is there any way to get every product weight? I…

Olimhon Yusufjonov
- 67
- 1
- 6
2
votes
2 answers
how to resolve ( [error] => invalid_client [error_description] => client authentication failed ) for ebay
public function authorizationToken(){
$link = "https://api.ebay.com/identity/v1/oauth2/token";
$codeAuth = base64_encode($this->clientID.':'.$this->certID);
$ch = curl_init($link);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:…

phpfan
- 29
- 1
- 8
2
votes
0 answers
Python script returns Schema XML request error SimpleDeserializer
I'm trying to build an AddItem function for python with the ebaysdk and am having a few problems getting things to work properly.
Here is my python code that I'm calling:
def addItem(opts):
try:
api = Trading(domain=opts.domain,…

user3299633
- 2,971
- 3
- 24
- 38
2
votes
1 answer
eBay SDK - adding an item - error: No product found for ProductListingDetails. with EAN
I'm trying to add a product to eBay using the API.
Here's a snippet of the code:
-
GBP
GB
Days_30
…

user1398287
- 5,245
- 5
- 21
- 25
2
votes
0 answers
eBay Trading API error: You need to create a seller's account
I'm using eBay PHP SDK
When i try to add fixedprice item to sandbox - everything is OK, then I just change the credentials to Production mode and get an error:
You need to create a seller's account. Before you can list this item
we need some…

Viruscom1000
- 119
- 12
2
votes
0 answers
Python EbaySDK Merchandising API returns 'Invalid CONSUMER-ID specified' error
I've been using the Python EbaySDK to query ebay for items etc; however I've run into a problem when attempting to use the production Merchandising API with the following code:
import ebaysdk
from ebaysdk.merchandising import Connection as…

RJC
- 21
- 1
1
vote
1 answer
Ebay API: How to Set Item Category While Bulk Creating Items via bulkCreateOrReplaceInventoryItem
I'm bulk-creating items using the bulkCreateOrReplaceInventoryItem API. Some of my products are listed under the wrong categories. I can't find any field in the request payload by which I can mention the category id of each item.
Here are the API…

habib
- 1,454
- 17
- 31
1
vote
0 answers
When requesting GetMultipleItems is it possible to retrieve discount information?
I am trying to access the special discounts that sellers offer when you buy multiple products from their shop.
I am using GetMultipleItems to get the data on a large set of books and their prices however a lot of the products we buy are a lot…

Cai Allin
- 307
- 2
- 11
1
vote
0 answers
What does the ?hash=item URL Param In eBay Sold URLS Mean?
Example of one ebay url:
https://www.ebay.com/itm/313606425313?hash=item4904664ae1:g:voUAAOSwP9BhH1Fj&var=612446123827
By the time you're reading this, the link may be dead.
But that's not the point, the point is what is the meaning of the…

rom
- 666
- 2
- 9
- 31
1
vote
0 answers
React App - Obtaining eBay OAuth access code by Express after user clicks
So, I am trying to obtain the eBay OAuth access_token (created when a user authorizes my app) back into my React app from the result of it being sent from ebay to an endpoint I created /api/ebayaccepted and have gotten stuck because I don't know how…

rom
- 666
- 2
- 9
- 31
1
vote
1 answer
How to create Listing in ebay sandbox?
I am working with EBAY [REST API]. For this i am using SANDBOX [which is test enviornment of Ebay]. I have created a developer account and two sandbox test user.For acting as a buyer and seller.I am trying to create listing using seller account. i…

Waheed Khan
- 104
- 2
- 10
1
vote
1 answer
Ebay: What is the best API to return sold items count
I am trying to play with EBay API but their documentation is really of not much help. What I am trying to do is use an API that searches results between a given start date and end date. Then based on this date frame, the API would return how many…

Zeusox
- 7,708
- 10
- 31
- 60
1
vote
0 answers
How to buy something on ebay using node.js?
I would like to write a node.js script that would buy items on ebay using ebay buy API.
The problem is that ebay documentation is terrible and i can't find an explanation on how to checkout an item?
I tried finding node.js libraries with such…

kroe
- 1,116
- 3
- 11
- 23