eventbrite-sdk-javascript
eventbrite-sdk-javascript copied to clipboard
Token vs API Key 'question'
When I create my app, I got a client secret, private API key and public API key.
When I am trying to use the SDK, it looks like it requires an OAUTH Token instead. May I know if I can use the private API key in the place of token to make it work ?
const sdk = eventbrite({
token: 'OATH_TOKEN_HERE'
});
The recommended approach to getting a token is using the OAuth flow, you can read more about that here.
For test and simple non-public usages I have used the Personal OAuth Token, as the token
.