React Native Auth0 - v5.5.0
    Preparing search index...

    Type Alias SessionTransferCredentials

    Represents the session transfer credentials used for Native to Web SSO. These credentials are obtained by exchanging a refresh token and can be used to authenticate in web contexts without requiring the user to log in again.

    Session transfer tokens are short-lived and expire after a few minutes. Once expired, they can no longer be used for web SSO.

    type SessionTransferCredentials = {
        sessionTransferToken: string;
        tokenType: string;
        expiresIn: number;
        idToken?: string;
        refreshToken?: string;
    }
    Index

    Properties

    sessionTransferToken: string

    The session transfer token used for web SSO.

    tokenType: string

    The type of the token issued

    expiresIn: number

    The expiration time of the session transfer token in seconds.

    idToken?: string

    A new ID token, if one was issued during the token exchange. This is typically present when Refresh Token Rotation is enabled.

    refreshToken?: string

    A new refresh token, if one was issued during the token exchange. This is present when Refresh Token Rotation is enabled.