OAuth methods
Authorization request
Redirect the user to the authorization endpoint with:
Arcane redirects to the registered URI with
code and state after the user
signs in and selects an organization.
Token request
Send anapplication/x-www-form-urlencoded request to the token endpoint.
access_token, token_type, and expires_in. It also
contains refresh_token when you requested offline_access.
To renew access, call the same token endpoint with
grant_type=refresh_token, client_id, and refresh_token.