core.oauthtokentype
Home > @medplum/core > OAuthTokenType
OAuthTokenType enum
OAuth 2.0 Token Type Identifiers See: https://datatracker.ietf.org/doc/html/rfc8693\#name-token-type-identifiers
Signature:
export declare enum OAuthTokenType
Enumeration Members
Member | Value | Description |
---|---|---|
AccessToken |
| Indicates that the token is an OAuth 2.0 access token issued by the given authorization server. |
IdToken |
| Indicates that the token is an ID Token as defined in Section 2 of [OpenID.Core]. |
RefreshToken |
| Indicates that the token is an OAuth 2.0 refresh token issued by the given authorization server. |
Saml1Token |
| Indicates that the token is a base64url-encoded SAML 1.1 [OASIS.saml-core-1.1] assertion. |
Saml2Token |
| Indicates that the token is a base64url-encoded SAML 2.0 [OASIS.saml-core-2.0-os] assertion. |