GI4RONJBJVXXCLIUUZ4IEGH3FS3TCZZXLNJ3WQQJ4CPTJENKFKCAC
# -*- mode: snippet -*-
# name: api_support_read_the_docs
# key: api_support_read_the_docs
# --
Hi there,
Thanks for your interest in build on our API. Our API is:
* free and open to the public
* RESTful - uses a REST style design
* JSON - returns and accepts JSON data
Check out <https://www.eventbrite.com/developer/v3/> the documentation
to find out what all you can and can't (yet!) do with our API.
If you run into any issues, or something doesn't make sense after
checking the documentation, you can reach out for help by sending an
email to api@eventbrite.com.
Best,
Chris
# -*- mode: snippet -*-
# name: personal_email_signature
# key: personal_email_signature
# --
Best,
Chris Cummings
# -*- mode: snippet -*-
# name: api_support_authorization_personal_oauth_token
# key: api_support_authorization_personal_oauth_token
# --
Hi there,
Are you sending requests with your "Personal Oauth Token"?
It's not the app key, that you want to include with your requests.
To get your Personal Oauth Token:
* go to https://www.eventbrite.com/myaccount/apps/
* click "Show Client Secret and OAuth Token"
* copy the token labeled Your Personal OAuth Token
The send the token in the request either as:
* a url parameter:
$ curl https://eventbriteapi.com/v3/users/me/?token=YOUR-TOKEN
* an authorization header in the request:
$ curl -H 'Authorization: Bearer YOUR-TOKEN' https://eventbriteapi.com/v3/users/me/
Best,
Chris