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

    Interface AuthorizationParameters

    interface AuthorizationParameters {
        audience?: null | string;
        max_age?: number;
        organization?: string;
        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.

    organization?: string

    The unique identifier of the organization that the user should be logged into. When specified, the user will be prompted to log in to this specific organization. The organization ID will be included in the user's session after successful authentication.

    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".