Questions tagged [ebay-sdk]

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.

112 questions
5
votes
1 answer

How to get access_token using refresh token from Ebay?

I'm trying to get access_token from a refresh token I got from eBay. I'm using Axios but I keep getting getting grant type in request is not supported error. const refreshToken = 'xxxxxxxx'; const appID = 'xxxxxxx'; const certID = 'xxxxxx'; …
ginad
  • 1,863
  • 2
  • 27
  • 42
5
votes
1 answer

ebaysdk-python Authentication failed : Invalid Application

I am trying to connect ebay with python script. here is my code, I have used ebaysdk-python import ebaysdk from ebaysdk.finding import Connection as finding from ebaysdk.exception import ConnectionError try: api = finding(debug=True,…
user5263286
5
votes
1 answer

How to use ebay sdk in Python?

I have found this code sample to make a query in ebay from here and also downloaded ebay-sdk for Python. How can I install the sdk and integrate this code with it? from ebaysdk import finding, nodeText f = finding() f.execute('findItemsAdvanced',…
Quazi Marufur Rahman
  • 2,603
  • 5
  • 33
  • 51
4
votes
0 answers

EBay API Call Get Seller Transactions not Returning Seller Feedback Rating

I'm using the GetSellerTransactionsCall from eBay Trading API to obtain transaction from an eBay Seller. According to eBay Documentation this call is suppose to return a Seller object which contains a UserType with the following data: Seller…
4
votes
1 answer

Unable to add item on eBay API due to Item Specific Type missing

We are getting the following error when calling the eBay AddItemRequest API The item specific Type is missing. Add Type to this listing, enter a valid value, and then try again.21919303
Pankaj Kumar
  • 94
  • 10
4
votes
2 answers

eBay API 'Invalid auction currency' error

I'm trying to add eBay listing through their API using SDK (ebaysdk-python). I run tests on sandbox.ebay.co.uk with Trading API Sandbox. I am selling my products on eBay.co.uk and I want specify price in GBP. Products are shipped from Poland. With…
user3041764
  • 817
  • 10
  • 35
3
votes
1 answer

Api ebaysdk trading error 2191930 while uploading an item

I've been having trouble with eBay's API for days when it comes to trading (I drew almost entirely on the tutorial of this article). I would like to upload a sample item (extracted from the timotheus trading module) to the Sandbox but my little…
Memmo
  • 298
  • 3
  • 8
  • 31
3
votes
1 answer

Ebay OAuth API ERROR: invalid_grant - the provided authorization grant code is invalid or was issued to another client

I am trying to get a OAuth User Access Token from the eBay API using this document: https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html My Code works perfectly fine if I use: "grant_type": "client_credentials" but when I…
zeroalpha
  • 173
  • 1
  • 11
3
votes
0 answers

eBay Fulfilment API not returning shipping addresses

I'm trying to retrieve the addresses for unfulfilled orders but for whatever reason since yesterday they've just stopped appearing in the response JSON. The access token is fresh. Everything else is there accept the addresses. For any order. This is…
3
votes
1 answer

How to generate eBay OAuth user token?

I have been using this ebay-sdk-php from David Sadler to generate a Trading Call to Ebay API, but first I have to create the OAuthUserToken. I used the gettoken.php example and created the following code: $service = new…
s_h
  • 1,476
  • 2
  • 27
  • 61
3
votes
2 answers

ebaysdk: Not being able to connect

I've being trying to use the python ebaysdk and I'm not being able to understand why I keep receiving the following error: {'Timestamp': '2017-02-21T19:55:31.915Z', 'Errors': {'LongMessage': 'Validation of the authentication token in API request…
Walter_Ritzel
  • 1,387
  • 1
  • 12
  • 16
3
votes
1 answer

Get sold items list in Ebay SDK using davidtsadler/ebay-sdk-php

I'm trying to get a list of my orders (items sold) using the api davidtsadler/ebay-sdk-php https://github.com/davidtsadler/ebay-sdk-php but I can't get a list. I found some examples but those didn't work for me. $service = new…
Rafa Cuestas
  • 433
  • 1
  • 5
  • 13
3
votes
1 answer

How to change xml response to json?

I'm using davidsadler's PHP ebay SDK to integrate ebay in my PHP application. Every response is in the form of this type of xml. I've echoed before this response to see it clearly. DTS\eBaySDK\Trading\Types\ItemArrayType Object ( …
Danish Jamil
  • 1,090
  • 11
  • 31
3
votes
1 answer

Unhandled Exception running eBay C# SDK on Mono

I downloaded the eBay SDK for use in an internal application we are developing. The catch is we are developing on Mono. When I run the eBay Hello World sample on .NET, it displays the following output: +++++++++++++++++++++++++++++++++++++++ +…
Matt Welch
  • 670
  • 4
  • 11
2
votes
1 answer

Ebay SDK Function GetCategorySpecifics - sometimes work sometimes not

help needed with GetCategorySpecifics, sometimes it works, sometimes I just get a HTML answer instead of the XML, even with the same category etc. So heres the code I use: import requests import xml.etree.ElementTree as ET def…
Richard G.
  • 23
  • 3
1
2 3 4 5 6 7 8