【发布时间】:2017-08-22 05:45:01
【问题描述】:
如何在aspnet core 2.0中添加多个cookie方案?
我已按照此处的说明进行操作 Auth 2.0 Migration announcement 在这里Migrating Authentication and Identity to ASP.NET Core 2.0 但我无法添加多个方案。
例如:
services.AddAuthentication("myscheme1").AddCookie(o =>{
o.ExpireTimeSpan = TimeSpan.FromHours(1);
o.LoginPath = new PathString("/forUser");
o.Cookie.Name = "token1";
o.SlidingExpiration = true;
});
services.AddAuthentication("myscheme2").AddCookie(o =>{
o.ExpireTimeSpan = TimeSpan.FromHours(1);
o.LoginPath = new PathString("/forAdmin");
o.Cookie.Name = "token2";
o.SlidingExpiration = true;
});
【问题讨论】:
标签: c# asp.net cookies asp.net-core asp.net-core-mvc-2.0