ebay-api icon indicating copy to clipboard operation
ebay-api copied to clipboard

eBay Node API in TypeScript for Node and Browser with RESTful and Traditional APIs. This library aims to implement all available eBay apis.

Results 11 ebay-api issues
Sort by recently updated
recently updated
newest added

my code ``` const eBay = new eBayApi({ appId: 'XXXXXXXXXXXXXXXXXX', certId: 'XXXXXXXXXXXXXXXXXX', devId: 'XXXXXXXXXXXXXXXXXX', authToken: 'XXXXXXXXXXXXXXXXXX', siteId: eBayApi.SiteId.EBAY_DE, marketplaceId: eBayApi.MarketplaceId.EBAY_DE, sandbox: false }); (async () => { const result =...

I've implemented a bunch of api calls from the Sell Feed and Sell Marketing APIs and have noticed some issues in the sdk. I have modified my own copy of...

Hi! Thanks for your amazing work! Im trying to get eBay's date that they have in the response headers (header called "date"). tried to do it this way: ```javascript const...

I have thousands of items and multiple eBay accounts. They are mostly variation items with differing prices per color and size variation. What's the best way to bulk list all...

Hi, thanks for this library. I have a problem, when i try to use your library in production mode, and try to use the scope https://api.ebay.com/oauth/api_scope/commerce.catalog.readonly and then when try...

Hello, I've written this simple script: ``` const _fulfillment = eBay.factory.createSellApi().fulfillment; _fulfillment.getOrders().then(item => { console.log(JSON.stringify(item, null, 2)); }).catch(e => { console.error(JSON.stringify(e)); }); ``` And am getting this error: ``` EBayAccessDenied:...

Got a weird one which I suspect is more on Ebay's side, but as of today, when I use trading.ReviseFixedPriceItem on a managed payment account, the listing is correctly listed,...

* [x] Are you running the latest version? * [x] Have you included sample input, output, error, and expected output? * [x] Have you checked if you are using correct...

* [x] Are you running the latest version? * [x] Have you included sample input, output, error, and expected output? * [x] Have you checked if you are using correct...

app.get('/offersPolicies', async function (req, res) { try { const token = await getTokenInformation(1); if(!token) { return res.sendStatus(403); } eBay.OAuth2.setCredentials(token); eBay.OAuth2.on('refreshAuthToken', (refreshedToken) => { req.session.token = refreshedToken; }); const viewItemSku =...