Access Token (OAuth 2.0)
The access token is generated by the Tokens API (root) through the OAuth 2.0 endpoints and contains the account ID (sub
claim) as well access scopes (scope
claim). The access token can and must be used as an authorization token by any client in order to call the Quasr APIs. To do so the access token must be presented as a bearer token in the Authorization
header (so Bearer JWT
).
Key properties you can configure for the access token are:
token lifetime (
exp
)token audience (
aud
)modify scopes using the extension
add custom claims using the extension
An example access token below with default Quasr audience and your own audience (back-end).
Last updated