Interface AuthorizationParameters

interface AuthorizationParameters {
    max_age?: number;
    scope?: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

    Additional authorization parameters.

Properties

Properties

max_age?: number

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

scope?: string

The list of scopes to request authorization for.

Defaults to "openid profile email offline_access".