gpt4 book ai didi

c# - Azure Active Directory 身份验证损坏 - 没有已知的根本原因

转载 作者:太空狗 更新时间:2023-10-30 00:50:07 24 4
gpt4 key购买 nike

我正在构建一个依赖 AAD 的 ASP.NET MVC Web 应用程序授权。我使用标准流程向项目添加身份验证(通过 VS 进行 AAD 身份验证),并且在过去两周内运行得非常好。

今天,突然坏了:

ASP.NET MVC Error ASP.NET MVC Error 2

这发生在 ADALTokenCache 初始化时(标准 AAD 身份验证例程):

public ADALTokenCache(string signedInUserId)
{
// associate the cache to the current user of the web app
userId = signedInUserId;
this.AfterAccess = AfterAccessNotification;
this.BeforeAccess = BeforeAccessNotification;
this.BeforeWrite = BeforeWriteNotification;
// look up the entry in the database
Cache = db.UserTokenCacheList.FirstOrDefault(c => c.webUserUniqueId == userId);
// place the entry in memory
this.Deserialize((Cache == null) ? null : MachineKey.Unprotect(Cache.cacheBits,"ADALCache"));
}

看起来很奇怪,根本原因我也不知道——除了添加更多 View 和 Controller 之外,没有对应用程序本身进行任何更改(没有任何事情会干扰身份验证)。

清除浏览器 cookie 不会执行任何操作。手动设置 MachineKey 也没有帮助。

部署应用程序后,此重现将在本地和远程服务器上进行。

有人遇到过这种情况吗?

没有对配置进行任何修改,看起来很奇怪。

最佳答案

解决这个问题的方法是删除数据库。

缓存基于本地MDF文件,并在Web.config中更改其名称:

<add name="DefaultConnection" 
connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-Den-SomeNewName.mdf;Initial Catalog=aspnet-Den-SomeNewName;Integrated Security=True"
providerName="System.Data.SqlClient" />

关于c# - Azure Active Directory 身份验证损坏 - 没有已知的根本原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33574743/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com