Authentication
Using OAuth Access Tokens
When accessing the smatchly API, you should specify your access token as a Bearer token in the authorization header of your request. For example, using the Javascript Fetch API:
const response = fetch('https://api.smatchly.com/...', {
headers: {
Authorization: 'Bearer ' + accessToken
}
});Last updated
Was this helpful?