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

    Type Alias AccessTokenResponse

    Full response from the /auth/access-token endpoint.

    Returned by getAccessToken({ includeFullResponse: true }) and by mfa.challengeWithPopup(). Contains the access token along with scope and expiration metadata.

    type AccessTokenResponse = {
        expires_at?: number;
        expires_in?: number;
        scope?: string;
        token: string;
        token_type?: string;
    }
    Index

    Properties

    expires_at?: number

    Absolute expiration time in seconds since Unix epoch.

    expires_in?: number

    Time-to-live in seconds from the time of issuance.

    scope?: string

    Space-separated scopes granted by Auth0.

    token: string

    The access token string (JWT or opaque).

    token_type?: string

    Token type, typically "Bearer".