我在我的MVC5应用程序中使用Identity 2.1.
我将PasswordSignInAsync的isPersistent属性设置为true以启用“记住我”:
我将PasswordSignInAsync的isPersistent属性设置为true以启用“记住我”:
var result = await SignInManager.PasswordSignInAsync(model.Username,model.Password,true,shouldLockout: false);
但是,如果我一直保持登录,那么当我早上刷新页面时,它会注销我,我必须重新登录.
如何在用户手动注销之前防止自动注销?
这与身份使用的Cookie身份验证有关吗?我真的不了解在Startup.Auth.cs中设置的CookieAuthenticationOptions.
new CookieAuthenticationProvider { OnValidateIdentity = SecurityStampValidator .OnValidateIdentity<ApplicationUserManager,ApplicationUser>( validateInterval: TimeSpan.FromMinutes(30),regenerateIdentity: (manager,user) => user.GenerateUserIdentityAsync(manager)) }
解决方法
我想你应该读
this article.有两个不同的间隔:ValidateInterval和ExpireTimeSpan.在你的情况下,我认为你应该更改expireTimeSpan,而不是ValidateInterval.