微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

angular – 在oidc-client-js中回调后没有响应状态

我认为这是与角度5.2.8&有关的错误. 6.
角度5.2.7工作正常.
我创建一个 ng5 branch并更新角度到最新的5.2.8和错误com!
任何人都可以指导我使用oidc-client-js进行角度5.2.8和更高版本的样本?

解决方法

它是由window.location.hash中的状态URI编码引起的.
对我来说,这解决了这个问题:

if (window.location.hash) {
window.location.hash = decodeURIComponent(window.location.hash);
// authorizedCallback returns wrong result when hash is URI encoded
this.oidcSecurityService.authorizedCallback();
} else {
this.oidcSecurityService.authorize();
}

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

相关推荐