How to get OAuth token from ebay API using express, node, javascript
What combination of requests and responses are needed to get an Oauth token from eBay? What is a runame and what headers do I need to keep eBay happy?
What combination of requests and responses are needed to get an Oauth token from eBay? What is a runame and what headers do I need to keep eBay happy?
I am trying to get some products from a user's ebay account, but when I run my code I am only getting a that error "Your application encountered an error. This request is missing required input tag " or "."…
https://auth.sandbox.ebay.com/oauth2/authorize? client_id=${clientID} &redirect_uri=https://localhost:3000/ebay/callback &response_type=code &scope=https%3A%2F%2Fapi.ebay.com%2Foauth%2Fscope%2Fsell%40user I keep receiving this error: {"error_id":"invalid_request","error_description":"Input request parameters are invalid.","http_status_code":400} I am following instructions from this site here Please can anyone explain why I am getting this error?
I want to use the eBay-API to get my sold items. Here is my code: ApiContext apiContext = new ApiContext(); ApiCredential credential = apiContext.getApiCredential(); ApiAccount acc = new ApiAccount(); acc.setApplication("app-id"); acc.setDeveloper("dev-id"); acc.setCertificate("cert"); eBayAccount eBayAccount = new eBayAccount(); eBayAccount.setPassword("ebay user"); eBayAccount.setUsername("ebay…
I got a basic script to connect with ebay API and search for keyword items. The script works fine, but unfortunatelly, it searches only the first 100 items, how to increase amount of the search results ? from ebaysdk.finding import…
I've been at this for several days now, and I can't seem to find the solution. I'm trying to authorize via ebay API to get a user token for further actions. When I use sandbox environment, it all works great,…
I am having issues with using the Ebay API with my Angular application. What I'm doing is getting data back from Ebay which is in the form of JSON. This is all fine but I keep getting this error: Uncaught…
currently I am using eBay Trading API with Python. Thanks to: https://github.com/timotheus/ebaysdk-python I used https://github.com/luke-dixon/django-ebay-accounts to get tokens for user. Now, I would like to use Restful API (https://developer.ebay.com/docs#Acc). I don't think I can use tokens I have already. So,…
I'm trying to obtain an eBay OAuth access & refresh token but keep getting a 401 Unauthorized response. I've been through every bit of documentation on this and tried just about everything but no joy. I've been through the user…
I am using Java eBay SDK, and I am trying to call addItem API, I added eBay maven dependency and repository and wrote a simple application that adds a new Item. The main is as shown below: public static void…