express-openid-connect
    Preparing search index...

    Interface SessionTransferTokenResult

    Result of a successful RequestContext.requestSessionTransferToken call. The STT is opaque, single-use, and expires in ~60 seconds. Pass it directly to RequestContext.buildSessionTransferRedirect — never decode or store it.

    interface SessionTransferTokenResult {
        expires_in: number;
        issued_token_type: string;
        scope?: string;
        session_transfer_token: string;
        token_type?: string;
    }
    Index
    expires_in: number

    Token lifetime in seconds (~60).

    issued_token_type: string

    The issued token type URN. Always "urn:auth0:params:oauth:token-type:session_transfer_token".

    scope?: string

    Granted scopes, if returned by the authorization server.

    session_transfer_token: string

    The opaque session transfer token. Hand to buildSessionTransferRedirect.

    token_type?: string

    Informational only — typically "N_A".