gpt4 book ai didi

OWIN 身份验证和超时

转载 作者:行者123 更新时间:2023-12-01 04:34:43 25 4
gpt4 key购买 nike

我将 MVC 5 与 OWIN 身份验证一起使用。
这是我的 StartUp.cs 的代码。

    public void ConfigureAuth(IAppBuilder app)
{
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Account/Login"),
ExpireTimeSpan = new TimeSpan(60000000000)
});
app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);


}

过期时间设置为 60000000000 纳秒。

现在的要求是当 cookie 过期时,我需要重定向到登录屏幕。

怎么做?

最佳答案

希望这会帮助某人调试...
错误在 web.config 文件中

<system.webServer>
<modules>
<remove name="FormsAuthenticationModule" />
</modules>
<system.webServer>

这里的名称 Forms authenticationModule 是一个错字。它应该是
<system.webServer>
<modules>
<remove name="FormsAuthentication" />
</modules>
<system.webServer>

瞧,它开始工作了。

关于OWIN 身份验证和超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21660497/

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