Overview#
Token Type Identifiers are defined in OAuth 2.0 Token Exchange as URI parameters as the value to describe the token in question.OAuth 2.0 Token Exchange Request parameters:
- requested_token_type
- subject_token_type
- actor_token_type"
OAuth 2.0 Token Exchange Response:
- issued_token_type
Token Type Identifierss are the following URIs:
- urn:ietf:params:oauth:token-type:access_token
(Access Token) - indicate that the token is an OAuth 2.0 Access Token - same as "access_token" but as a URI
- urn:ietf:params:oauth:token-type:refresh_token
(Refresh Token) - indicate that the token is an OAuth 2.0 Refresh Token - same as "refresh_token" but as a URI
- urn:ietf:params:oauth:token-type:id_token
(id_token)- Indicates that the token is an ID Token, as defined in Section 2 of OpenID.Core.
- urn:ietf:params:oauth:grant_type:token-exchange - (new)
- urn:ietf:params:oauth:token-type:saml1
- Indicates that the token is a base64url-encoded SAML 1.1 OASIS.saml-core-1.1 assertion.
- urn:ietf:params:oauth:token-type:saml2
- Indicates that the token is a base64url-encoded SAML V2.0 OASIS.saml-core-2.0-os assertion.
- urn:ietf:params:oauth:token-type:jwt
- is defined in Section 9 of JWT, indicates that the token is a JWT.!! More Information