ASP.NET标识 - 用户在几分钟后注销

时间:2016-07-04 09:05:50

标签: asp.net asp.net-mvc asp.net-identity

我在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时,它会在几次不活动后注销用户。很难弄清楚问题是什么,因为在开发机上它不会让我退出。

任何帮助?

0 个答案:

没有答案