-
Notifications
You must be signed in to change notification settings - Fork 0
Authorization
Axel Boberg edited this page Jun 5, 2019
·
2 revisions
This API implements OAuth2 as its main authorization protocol combined with OpenID Connect. Following RFC 6749 and Open ID Connect Core 1.0.
In order to access the API you need to register your application as an OAuth client.
Check back soon for instructions on how to register your application
For confidential clients it is recommended to use the authorization_code
-flow for best security.
Using this flow, getting an access-token is a two-step process.
- Getting an
authorization_code
- Exchanging the
authorization_code
for anaccess_token
and arefresh_token
/oauth/authorize
/oauth/token
The refresh_token
-flow is used when refreshing an access_token
using a refresh_token
acquired by using the authorization_code
flow.
/oauth/token