Interface RenewTokenOptions

Options to override options during silent sign in

interface RenewTokenOptions {
    acr_values?: string;
    extraQueryParams?: Record<string, string | number | boolean>;
    extraTokenParams?: Record<string, unknown>;
    login_hint?: string;
    max_age?: number;
    nonce?: string;
    prompt?: string;
    redirect_uri?: string;
    resource?: string | string[];
    scope?: string;
    silentRequestTimeoutInSeconds?: number;
    state?: unknown;
    ui_locales?: string;
    url_state?: string;
}

Hierarchy

  • SigninSilentArgs
    • RenewTokenOptions

Properties

acr_values?: string
extraQueryParams?: Record<string, string | number | boolean>
extraTokenParams?: Record<string, unknown>
login_hint?: string
max_age?: number
nonce?: string
prompt?: string
redirect_uri?: string
resource?: string | string[]
scope?: string
silentRequestTimeoutInSeconds?: number
state?: unknown

custom "state", which can be used by a caller to have "data" round tripped

ui_locales?: string
url_state?: string