OIDC
Exchange Code for Token
POST
Exchanges an authorization code for tokens, following the OIDC standard.Documentation Index
Fetch the complete documentation index at: https://docs.hopae.com/llms.txt
Use this file to discover all available pages before exploring further.
Send parameters as
application/x-www-form-urlencoded and authenticate with HTTP Basic when using confidential clients.Request Body
Must be ‘authorization_code’.
The authorization code received after a successful verification.
Required for public clients or when not using HTTP Basic.
Must exactly match the redirect URI used in the authorization request.
Confidential clients include their Client Secret either via HTTP Basic (recommended) or in the form body.
Response
Bearer token you can use to call the
/userinfo endpoint.Always
Bearer.Lifetime of the access token in seconds (for example,
3600).A JWT with technical, non‑PII claims (for example:
sub, acr, hopae_loa, iat, exp, iss, aud).
Personal claims are not included in the ID Token. Use /userinfo to retrieve user attributes.
