ebay-oauth-nodejs-client
ebay-oauth-nodejs-client copied to clipboard
🔑 Generate an OAuth token that can be used to call the eBay Developer REST APIs.
I'm running this code in my **server.js**: let authUrl = ebayAuthToken.generateUserAuthorizationUrl('PRODUCTION', scopes, options); authUrl = authUrl.split(" ") res.redirect(authUrl[0]); But I keep getting this error in my console: > Access to...
-Removed Yarn File -Update package.json --- "mocha": "^10.3.0", 0 vulnerabilities. instead of 8 thanks developers.
When trying to invoke the getApplicationToken function with proper credentials it throws an error in the console TypeError: Cannot read property 'clientId' of undefined. Framwork: NestJs with TypeScript
Bumps [get-func-name](https://github.com/chaijs/get-func-name) from 2.0.0 to 2.0.2. Release notes Sourced from get-func-name's releases. v2.0.2 What's Changed Revert previous changes that shipped this as an ES module. Full Changelog: https://github.com/chaijs/get-func-name/commits/v2.0.2 v2.0.1 What's...
Hi there, When attempting to fetch a token using the sandbox environment, the lib throws an error: ``` const encodedStr = base64Encode(`${ebayAuthToken.clientId}:${ebayAuthToken.clientSecret}`); ^ TypeError: Cannot read property 'clientId' of undefined...
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @OlafConijn in...
Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@joaomoreno, @lukekarrys) Changelog Sourced from semver's...
There was token spelled toke which really confused me while implementing ebay-oauth. However I fixed it.
Hey there, thanks for this helpful package! I've converted to typescript if interested. I didn't find type declarations for this at `@types/ebay-oauth-nodejs-client`
Thanks for this library, it makes dealing with the ebay API significantly easier. I was trying to access my own ebay account programmatically. I am able to use this code...