这部分documentation describes部分如何使用多种身份验证方案:
在某些情况下,例如单页应用程序,最终可能会有多种身份验证方法。例如,您的应用程序可能会使用基于cookie的身份验证来登录JavaScript请求的承载身份验证。在某些情况下,您可能有多个身份验证中间件实例。例如,两个cookie中间件,其中一个包含基本身份,另一个在多因素身份验证触发时创建,因为用户请求了需要额外安全性的操作。
示例:
app.UseCookieAuthentication(new CookieAuthenticationOptions()
{
AuthenticationScheme = "Cookie",
LoginPath = new PathString("/Account/Unauthorized/"),
AccessDeniedPath = new PathString("/Account/Forbidden/"),
AutomaticAuthenticate = false
});
app.UseBearerAuthentication(options =>
{
options.AuthenticationScheme = "Bearer";
options.AutomaticAuthenticate = false;
});
但是它仅描述了如何使用Bearer或Cookie auth。不清楚的是其他组合是有效的,或者如何正确地向客户发放承载或cookie。
如何实现?
答案 0 :(得分:4)
Facebook,Google等大型网站使用的一个常见用例是使用多个Cookie身份验证中间件,并使用AutomaticAuthenticate
app.UseCookieAuthentication(new CookieAuthenticationOptions()
{
AuthenticationScheme = "InsecureLongLived",
LoginPath = new PathString("/Account/Unauthorized/"),
AccessDeniedPath = new PathString("/Account/Forbidden/"),
AutomaticAuthenticate = true
});
app.UseCookieAuthentication(new CookieAuthenticationOptions()
{
AuthenticationScheme = "SecureAndShortLived",
LoginPath = new PathString("/Account/Unauthorized/"),
AccessDeniedPath = new PathString("/Account/Forbidden/"),
AutomaticAuthenticate = false
});
这为您提供了方便,无需一直使用长期存在的cookie登录,但只要您需要做一些有潜在危险的事情,您就可以切换到使用更短的生命值进行身份验证,因此需要更安全的cookie用户再次登录。