我有一个角度5应用程序,我已经实现了angular2-oauth-oidc和okta。
当我尝试注销时,我收到400 Bad Request错误,说Invalid_token。会议似乎已经过期了。
点击退出按钮时,用于退出的代码如下:
this.oauthService.logOut();
我的app.component.ts文件:
this.oauthService.redirectUri = window.location.origin;
this.oauthService.clientId = oktaClientId;
this.oauthService.scope = 'openid profile email';
this.oauthService.issuer = 'https://aaaa.oktapreview.com';
this.oauthService.tokenValidationHandler = new JwksValidationHandler();
this.oauthService.setupAutomaticSilentRefresh();
// Load Discovery Document and then try to login the user
this.oauthService.loadDiscoveryDocument().then(() => {
this.oauthService.tryLogin({
onTokenReceived: (info) => {
this.router.navigate([info.state]);
}
});
一旦会话过期,请帮助处理注销。提前谢谢。