Skip to main content
Module

x/authlete_deno/mod.ts>TokenType

Authlete Library for Deno
Latest
class TokenType
Re-export
import { TokenType } from "https://deno.land/x/authlete_deno@v1.2.10/mod.ts";

Static Properties

readonly
ACCESS_TOKEN: TokenType

Token type URI for an OAuth 2.0 access token; urn:ietf:params:oauth:token-type:access_token.

For more details, see RFC 8693 OAuth 2.0 Token Exchange, Section 3. Token Type Identifiers.

readonly
ID_TOKEN: TokenType

Token type URI for an ID Token; urn:ietf:params:oauth:token-type:id_token.

For more details, see RFC 8693 OAuth 2.0 Token Exchange, Section 3. Token Type Identifiers.

readonly
JWT: TokenType

JSON Web Token (JWT) Token Type; urn:ietf:params:oauth:token-type:jwt.

For more details, see RFC 7519 JSON Web Token (JWT), Section 9. URI for Declaring that Content is a JWT.

readonly
REFRESH_TOKEN: TokenType

Token type URI for an OAuth 2.0 refresh token; urn:ietf:params:oauth:token-type:refresh_token.

For more details, see RFC 8693 OAuth 2.0 Token Exchange, Section 3. Token Type Identifiers.

readonly
SAML1: TokenType

Token type URI for a base64url-encoded SAML 1.1 assertion; urn:ietf:params:oauth:token-type:saml1.

For more details, see RFC 8693 OAuth 2.0 Token Exchange, Section 3. Token Type Identifiers.

readonly
SAML2: TokenType

Token type URI for a base64url-encoded SAML 2.0 assertion; urn:ietf:params:oauth:token-type:saml2.

For more details, see RFC 8693 OAuth 2.0 Token Exchange, Section 3. Token Type Identifiers.