Making a Request
Overview
Once you've successfully authenticated with the API and received an access token, you may use that token to make requests.
Authorization Header
You'll need to add the access token as a header to each of your requests to the API. Follow the Bearer Authentication format as follows:
Authorization: Bearer {access token}
For more information about HTTP Authorization, see: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization
Example
Below is a code example that will walk you through making your first request step by step.
💬
Making an Authenticated Request
Open Recipe
Updated over 3 years ago