Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Type Alias AuthorizeOptions

    AuthorizeOptions: {
        binding_message: string;
        scope: string;
        audience?: string;
        request_expiry?: string;
        requested_expiry?: string;
        userId: string;
        subjectIssuerContext?: string;
        authorization_details?: string;
    } & Record<string, string>

    Options for the authorize request.

    Type declaration

    • binding_message: string

      A human-readable string intended to be displayed on both the device calling /bc-authorize and the user’s authentication device.

    • scope: string

      A space-separated list of OIDC and custom API scopes.

    • Optionalaudience?: string

      Unique identifier of the audience for an issued token.

    • Optional Deprecatedrequest_expiry?: string

      Custom expiry time in seconds for this request. Use AuthorizeOptions.requested_expiry instead.

    • Optionalrequested_expiry?: string

      Custom expiry time in seconds for this request.

    • userId: string

      The user ID.

    • OptionalsubjectIssuerContext?: string

      Optional parameter for subject issuer context.

    • Optionalauthorization_details?: string

      Optional authorization details to use Rich Authorization Requests (RAR).