Skip to content

Class tigrbl_auth.rfc.rfc8693.TokenType

tigrbl_auth.rfc.rfc8693.TokenType

Bases: Enum

Standard token type URIs for token exchange.

ACCESS_TOKEN class-attribute instance-attribute

ACCESS_TOKEN = (
    "urn:ietf:params:oauth:token-type:access_token"
)

REFRESH_TOKEN class-attribute instance-attribute

REFRESH_TOKEN = (
    "urn:ietf:params:oauth:token-type:refresh_token"
)

ID_TOKEN class-attribute instance-attribute

ID_TOKEN = 'urn:ietf:params:oauth:token-type:id_token'

SAML1 class-attribute instance-attribute

SAML1 = 'urn:ietf:params:oauth:token-type:saml1'

SAML2 class-attribute instance-attribute

SAML2 = 'urn:ietf:params:oauth:token-type:saml2'

JWT class-attribute instance-attribute

JWT = 'urn:ietf:params:oauth:token-type:jwt'