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

    Interface AuthorizationParameters

    interface AuthorizationParameters {
        audience?: null | string;
        max_age?: number;
        redirect_uri?: null | string;
        scope?: null | string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional authorization parameters.

    Index

    Properties

    audience?: null | string

    The unique identifier of the target API you want to access.

    max_age?: number

    The maximum amount of time, in seconds, after which a user must reauthenticate.

    redirect_uri?: null | string

    The URL to which the authorization server will redirect the user after granting authorization.

    scope?: null | string

    The scope of the access request, expressed as a list of space-delimited, case-sensitive strings. Defaults to "openid profile email offline_access".