Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Type Alias TokenResponse

    The response from the token endpoint.

    type TokenResponse = {
        access_token: string;
        refresh_token?: string;
        id_token: string;
        token_type?: string;
        expires_in: number;
        scope: string;
        authorization_details?: AuthorizationDetails[];
    }
    Index

    Properties

    access_token: string

    The access token.

    refresh_token?: string

    The refresh token, available with the offline_access scope.

    id_token: string

    The user's ID Token.

    token_type?: string

    The token type of the access token.

    expires_in: number

    The duration in seconds that the access token is valid.

    scope: string

    The scopes associated with the token.

    authorization_details?: AuthorizationDetails[]

    Optional authorization details when using Rich Authorization Requests (RAR).