nodejs-ebay-api
nodejs-ebay-api copied to clipboard
[No longer maintained] eBay API Client for Node.js
Is this possible with this API? https://developer.ebay.com/api-docs/commerce/taxonomy/resources/category_tree/methods/getCategorySuggestions I have tried this but I get a 503 error: ``` getCategories(){ const params = { q: this.keywords.split(/\s+/), category_tree_id: this.categoryId }; return new...
Hi, It seems that the Finding and Product URLS are currently using HTTP while HTTPS is now supported. I've created a branch with the requeired changed by was unable to...
Quite a few packages with security vulnerabilities. It would be great if you could get this merged and publish to npm.
Hello Dev, I am using this nodejs-ebay-api module for searching the book using ISBN in app. So I took reference of this [findItemsByProduct](http://developer.ebay.com/Devzone/finding/Concepts/MakingACall.html#jsonsyntax) from eBay developers site. I have tried...
``` ebay-api.ebayApiGetRequest({ serviceName: 'Trading', opType: 'GetCategories', appId: "xxx", params: { }, parser: ebay.parseItemsFromResponse }, function allItemsCallback(error, items) { console.error(error); console.log(items); } }); ``` I get this error: `[SyntaxError: Unexpected token
Unhandled rejection Error: Sandbox endpoint for Analytics service not yet implemented. How can we solve this part issue in the library?
Hi, I'm trying to make an AddFixedPriceItemCall. I'm using the `ebayApiPostXmlRequest` method, and my params are seen below: ``` params: { authToken: myAuthTokenIsHere, Item: { Country: 'US', Currency: 'USD', Description:...
Would be nice to have a simple method or property that contains an ebay affiliate rover link Here's is the manual link generator tool all it needs is a product...
- added support for BulkDataExchange and FileTransfer API - added zip parser with extracts the zip data from a `downloadFile` response - tests of BulkDataExchange and FileTransfer requests - tests...