Web 身份验证代理可以与非 oAuth 身份验证一起使用吗?
我创建了一个带有登录页面的 Asp.Net MVC2 网站,我想通过 Web 身份验证代理使用它来检索和保存身份验证 cookie。
这是代码:
WebAuthenticationResult WebAuthenticationResult = await WebAuthenticationBroker.AuthenticateAsync(
WebAuthenticationOptions.None,
new Uri("https://localhost:44301/Account/LogOn"),
new Uri("https://localhost:44301/"));
加载时,WAB 返回以下消息“无法连接到服务”,并且在查看事件查看器时会出现导航错误事件。
我的代码有问题还是无法连接到基于 cookie 的登录页面?