每个请求(包括js / spa)的.NET Core身份验证

时间:2019-03-29 09:43:20

标签: c# authentication asp.net-core asp.net-core-2.0 single-page-application

我在.NET核心解决方案中有一个React项目,基本上我只是希望对用户进行身份验证才能看到React项目/ SPA。

enter image description here

经过大量调查后,如果没有在React项目中执行一些代码,这似乎是不可能的,这意味着增加可在客户端中操作的JS的安全性。

我已经看到,可以对.Net Core中的每个请求进行身份验证,这可能是最好的方法。这可能吗?

我从其他资源中使用了一些身份验证代码,但出现错误。这是我的startup.cs代码

公共类启动     {         公共启动(IConfiguration配置)         {             配置=配置;         }

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);



        // In production, the React files will be served from this directory
        services.AddSpaStaticFiles(configuration =>
        {
            configuration.RootPath = "ClientApp/build";
        });


    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        app.UseAuthentication();

        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Error");
            // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
            app.UseHsts();
        }

        app.UseHttpsRedirection();
        app.UseStaticFiles();
        app.UseSpaStaticFiles();

        // This produces a server error.
        app.Use(async (context, next) =>
        {
            if (!context.User.Identity.IsAuthenticated)
            {
                await context.ChallengeAsync("");
            }
            else
            {
                await next();
            }
        });

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

            //routes.MapSpaFallbackRoute(
            //     name: "spa-fallback",
            //     defaults: new { controller = "Home", action = "AuthorizedSpaFallBack" });
        });

        app.UseSpa(spa =>
        {
            spa.Options.SourcePath = "ClientApp";

            if (env.IsDevelopment())
            {

                spa.UseReactDevelopmentServer(npmScript: "start");
            }
        });
    }
}

还是有人有其他想法可以实现我想要的?

谢谢

1 个答案:

答案 0 :(得分:1)

如果我理解正确,您希望使用后端身份验证服务对访问 SPA 的用户进行身份验证。在这种情况下,您可以使用 IdentityServer。

下面的链接演示了 API 授权的使用,结合 ASP.NET Core Identity 用于验证和存储用户,以及 IdentityServer 用于实现 OpenID Connect。

https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity-api-authorization?view=aspnetcore-5.0