interface KeycloakLogoutOptions {
    logoutMethod?: "GET" | "POST";
    redirectUri?: string;
}

Properties

logoutMethod?: "GET" | "POST"

HTTP method for calling the end_session endpoint. Defaults to 'GET'.

redirectUri?: string

Specifies the uri to redirect to after logout.