我在ASP.NET Identity中使用以下代码:
var options = new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
CookieName = "ScanTest",
ExpireTimeSpan = TimeSpan.FromHours(2),
LoginPath = new PathString("/account/login"),
SlidingExpiration = true,
};
app.UseCookieAuthentication(options);
当我将应用程序发布到Azure时,它会在几次不活动后注销用户。很难弄清楚问题是什么,因为在开发机上它不会让我退出。
任何帮助?