Questions tagged [ebay-api]

Application programming interface for integrating third-party programs with the eBay platform

supports a Developers Program, providing registered developers an which lets custom applications query the eBay in format or REST-style json format, and perform actions within the eBay platform.

The API features include:

  • Submitting items for listing
  • Listing eBay categories
  • Viewing information about listed items
  • Getting high bidder information for items you are selling
  • Retrieve lists of items a particular user is currently selling
  • Retrieve lists of items a particular user has bid on
  • Display eBay listings on other sites
  • Leaving feedback about other users

Related resources (, and as well as documentation) can be found at https://go.developer.ebay.com.

1116 questions
3
votes
1 answer

eBay API Single Item Call, Item Specifics

I am having a tough time trying to parse through this. I am more of a Java developer so I implemented this using arrays. How can I go about that in PHP? Professional Grader
newPHPDev
  • 33
  • 5
3
votes
1 answer

Querying eBay API with WCF

I'm trying to work with the eBay API in my ASP.NET Core 2.0 website. eBay's .NET SDK doesn't work with .NET Core, so I have the service added through WCF. I'm brand new to WCF and I can't get this client to work though. No matter what I try I'm…
vaindil
  • 7,536
  • 21
  • 68
  • 127
3
votes
0 answers

Using OAuth2 eBay authentication with .NET SDK

I have been searching throughout the internet for a solution to use OAuth2 user token with eBay's .NET SDK and could find ANY SINGLE solution. The code I have is like following: var ctx = new ApiContext(); ctx.Version = "897"; …
User987
  • 3,663
  • 15
  • 54
  • 115
3
votes
5 answers

eBay API - filter items by store/custom categories

My scenario: I have a client with an eBay store with custom categories. On their website, they would like to list the items they have for sale. They would like this list to be filterable by custom category. I've been searching for a couple days now,…
Jon
  • 51
  • 1
  • 5
3
votes
3 answers

How to get all ebay products name and details

I just want to get all ebay products name and their description, is there any way to do that? I have study their api documentation but there is no api that can return all products name,detail they have different api's some for category…
john
  • 611
  • 1
  • 7
  • 33
3
votes
1 answer

import all categories from ebay category list

I'm using ebays developer program to list ebays category list, what I would like to do is import this list using ebays API calls, my question is, I am re-inventing the wheel to create a list of insert statements to import all categories or is there…
smashit
  • 41
  • 5
3
votes
1 answer

Convert eBay timeLeft to Swift 3.0 TimeInterval

I am trying to convert the eBay timeLeft to a TimeInterval. The timeLeft value is returned from eBay as. Apparently the value is ISO 8601 (see link and question below). I believe the timeLeft is an interval relative to when I made the API…
Jacksonsox
  • 1,114
  • 15
  • 25
3
votes
1 answer

Double Passing Rows into MySQL Databases using PHP

eBay Platform Notifications recommends periodic polling of the GetOrders API to ensure each and every order is received. In my case, I have Platform Notifications set-up to parse the XML file received and insert it into a MySQL database using…
bbruman
  • 667
  • 4
  • 20
3
votes
1 answer

Using eBay OAuth

I have my code as shown below. I am trying to authenticate users with eBay to be able to get access token. On redirecting users back to my redirection URL to exchange code with access token, I get the error: HTTP/1.1 100 Continue HTTP/1.1 400 Bad…
dennisdup
  • 33
  • 1
  • 3
3
votes
2 answers

"Invalid Request" while trying to get eBay user Access Token. No specific error number given

This is the extremely vague response I'm getting, while trying to get a user access token: { "error":"invalid_request", "error_description":"request is invalid", "error_uri":null } Here is my code: $headers = array ( "Authorization:…
Andrew C.
  • 31
  • 1
3
votes
1 answer

Ebay API C# Cancel Order without AddDispute

So from looking at the link below I see that you can cancel an order by opening a dispute with the API. Cancel eBay order via API But I'm not looking to open a dispute for every cancellation. What I would like to do is be able to programmatically…
Roro
  • 311
  • 2
  • 20
3
votes
2 answers

ebay ordersAPI - Validation of the authentication token in API request failed

I'm trying to intergrate ebay's order API with my application. I have used following code to perform that. public class Order { public static void getOrders() throws ApiException, SdkException, Exception { ApiContext apiContext = new…
Tharsan Sivakumar
  • 6,351
  • 3
  • 19
  • 28
3
votes
0 answers

Not receiving any sandbox notifications for eBay

Using the below code, I am not seeing any sandbox notifications to our url or email for any event. I tried posting on eBay's dev forums but it seems to be a tumbleweed blowing through the planes over there. I ran both sets of code to setup the…
John C
  • 1,761
  • 2
  • 20
  • 30
3
votes
1 answer

eBay Fulfillment API for Get Orders

I have tried getOrders of Trading API but it doesn't return all orders like cancelled, shipped etc. I have tried to hit Get Orders of Fulfillment API in ebay to get all the…
Kunal
  • 61
  • 5
3
votes
1 answer

eBay JavaScript API - @ symbol in object member name

I am using the eBay JavaScript Finding API. The currency id member of the findItemsAdvancedResponse object is defined as @currencyId. So I am retrieving this value as: function _cb_findItemsAdvanced(root) { var items =…
igotmumps
  • 68
  • 3