angular-auth-oidc-client注销不起作用

问题描述

我正在使用angular-auth-oidc-client lib通过keycloak作为身份服务器对我的应用程序进行身份验证。我能够登录到该应用程序,但注销功能不起作用。我已经阅读了文档,并且正在使用相同的注销请求,但似乎没有用。请帮忙。预先感谢。

这是我的配置:

<Table.Summary.Row index={1}>

我的注销方法

{
    "sts_server": "http://localhost/auth/realms/test","redirect_url": "http://localhost:4200/app/","client_id": "test_client","response_type": "code","scope": "openid profile email","post_logout_redirect_uri": "http://localhost:4200/app/#/homepage/","startup_route": "/homepage/welcome","start_checksession": "true","silent_renew": "true","silent_renew_url": "assets","max_id_token_iat_offset_allowed_in_seconds": "10","logLevel": "info","forbidden_route": "/unauthorized","unauthorized_route": "/unauthorized"
}

解决方法

在配置中添加登出网址

logoutUrl: 'https://${your url logout}/Logout',

在你的组件中使用

import { OAuthService } from 'angular-oauth2-oidc';
constructor(private oauthService: OAuthService,) {}
logOut() {
  this.oauthService.logOut();
}