Interface LogoutRedirectOptions

Options to override options during redirect logout

interface LogoutRedirectOptions {
    extraQueryParams?: Record<string, string | number | boolean>;
    id_token_hint?: string;
    post_logout_redirect_uri?: string;
    redirectMethod?: "replace" | "assign";
    redirectTarget?: "top" | "self";
    state?: unknown;
}

Hierarchy

  • SignoutRedirectArgs
    • LogoutRedirectOptions

Properties

extraQueryParams?: Record<string, string | number | boolean>
id_token_hint?: string
post_logout_redirect_uri?: string
redirectMethod?: "replace" | "assign"
redirectTarget?: "top" | "self"
state?: unknown

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