没有Identity ASP.NET Core v2的Cookie中间件

web*_*ake 5 c# asp.net .net-core asp.net-core-2.0

我试图在不使用身份的情况下进行身份验证.我发现了一些文章描述了如何在其他版本中执行它,但对于ASP.NET Core 2没有任何内容.

以下是我拼凑在一起的内容.但是当它到达SignInAsync时会抛出异常InvalidOperationException: No authentication handler is configured to handle the scheme: MyCookieMiddlewareInstance

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc();
        services.AddCookieAuthentication("MyCookieMiddlewareInstance", o =>
        {
            o.LoginPath = new PathString("/Account/Login/");
            o.AccessDeniedPath = new PathString("/Account/Forbidden/");

        });
        services.AddAuthentication();
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Home/Error");
        }

        app.UseStaticFiles();

        app.UseMvc(routes =>
        {
            routes.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}");
        });

        app.UseAuthentication();
    }

    public async Task<IActionResult> Login()
    {

        var claims = new List<Claim>
            {
                new Claim(ClaimTypes.Name, "joe nobody")
            };
        var identity = new ClaimsIdentity(claims, "MyCookieMiddlewareInstance");
        var principal = new ClaimsPrincipal(identity);

        //blows up on the following statement:
        //InvalidOperationException: No authentication handler is configured to handle the scheme: MyCookieMiddlewareInstance
        await HttpContext.Authentication.SignInAsync("MyCookieMiddlewareInstance", principal); 

        return View();
    }
Run Code Online (Sandbox Code Playgroud)

有一个针对asp.net core v1.x的Microsoft文档(https://docs.microsoft.com/en-us/aspnet/core/security/authentication/cookie)但是在v2中对IApplicationBuilder.UseCookieAuthentication()进行了折旧.没有找到任何解决方案.

web*_*ake 4

Auth 2.0 似乎有一些重大更改(https://github.com/aspnet/Announcements/issues/232

设置是正确的,但我需要做两件事:

  1. 使用HttpContext.SignInAsync()( using Microsoft.AspNetCore.Authentication) 代替HttpContext.Authentication.SignInAsync()
  2. 用作"AuthenticationTypes.Federation"身份验证类型(注意:其他值似乎不起作用,空白将导致用户名被设置且 IsAuthenticated 为 false) var identity = new ClaimsIdentity(claims, "AuthenticationTypes.Federation");

下面是更正后的代码

在 Startup.cs 中

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc();
        services.AddCookieAuthentication("MyCookieMiddlewareInstance", o =>
        {
            o.LoginPath = new PathString("/Account/Login/");
            o.AccessDeniedPath = new PathString("/Account/Forbidden/");
        });
        services.AddAuthentication();
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Home/Error");
        }

        app.UseStaticFiles();

        app.UseAuthentication();

        app.UseMvc(routes =>
        {
            routes.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}");
        });
    }
Run Code Online (Sandbox Code Playgroud)

在控制器中

    using Microsoft.AspNetCore.Authentication;
    //...
    public async Task<IActionResult> Login()
    {
        var claims = new List<Claim>
        {
            new Claim(ClaimTypes.Name, "joe nobody")
        };
        var identity = new ClaimsIdentity(claims, "AuthenticationTypes.Federation");
        var principal = new ClaimsPrincipal(identity);
        await HttpContext.SignInAsync("MyCookieMiddlewareInstance", principal);

        return View();
    }
Run Code Online (Sandbox Code Playgroud)

  • 您可能应该引用“TokenValidationParameters.DefaultAuthenticationType”,而不是硬编码“AuthenticationTypes.Federation”,它被硬编码为[“Microsoft.IdentityModel.Tokens”](https://github.com/AzureAD/azure)中的值-activedirectory-identitymodel-extensions-for-dotnet/blob/master/src/Microsoft.IdentityModel.Tokens/TokenValidationParameters.cs)... 由于某种原因,它隐藏在 AzureAD 扩展项目中。清澈如泥…… (5认同)