asp.net core abp vnext identityserver4 登录失败
先说一下环境,chrome浏览器 .net core 5.0 ,abp vnext 分离项目,在部署后管理站点转跳到登录站点再跳回来时报错了,错误是:
-
Exception: Correlation failed.
别的信息就没了,仔细检查后发现 chrome下 http 站点才有这个问题,https是正常的。firefox 的http登录访问也是正常的。
网上搜索后发现是chrome SameSite的问题,因为 SameSite策略造成Identity Server4 无法设置cookie 。具体原因请看
HTTP:浏览器的 SameSite 更改会影响身份验证
解决方案可以参考以下链接
How to fix the Chrome login issue for the IdentityServer4
注意abp vnext模板生成的 blazor站点也会有这个问题,解决方式是一样的。