Parameter | Description |
---|---|
grant_type | The type of grant being requested. For authorization code flow, use authorization_code . |
code | The authorization code received from the authorization endpoint. |
redirect_uri | The URI to which the response will be sent. It must match the redirect URI registered with the client. |
client_id | The client ID you obtained during client registration. |
code_verifier | The PKCE code verifier. |
Field | Description |
---|---|
access_token | The token that can be used to access protected resources. |
id_token | A JWT that contains user identity information. |
refresh_token | A token that can be used to obtain new access tokens. |
token_type | The type of token issued. Typically Bearer . |
expires_in | The duration in seconds for which the access token is valid. |