@auth0/nextjs-auth0 - v4.14.0
    Preparing search index...

    Interface CustomTokenExchangeResponse

    Response from Custom Token Exchange.

    interface CustomTokenExchangeResponse {
        accessToken: string;
        expiresIn: number;
        idToken?: string;
        refreshToken?: string;
        scope?: string;
        tokenType: string;
    }
    Index

    Properties

    accessToken: string

    The access token issued by Auth0

    expiresIn: number

    Token lifetime in seconds

    idToken?: string

    The ID token, if openid scope was requested

    refreshToken?: string

    The refresh token, if offline_access scope was requested

    scope?: string

    Granted scopes

    tokenType: string

    Token type, typically "Bearer" or "DPoP"