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.

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