如何解决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();
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。