Client Authentication
Authorization Code Grant
<auth>GET <authorizationEndpoint>- Query
client_id=<clientID>redirect_uri=<authCallbackURL>response_type=codescope=<scope>state=<state>nonce=<nonce>
- Query
<authCallback>GET <authCallbackURL>- Query
code=<code>state=<state>
- Query
<token>POST <tokenEndpoint>- Header
Authorization: Basic <base64(<clientID>:<clientSecret>)>
- Body
grant_type=authorization_codecode=<code>redirect_rui=<redirectURI>
- Header