c# - 添加 Azure AD 身份验证时出现 CORS 错误

标签 c# angular azure-active-directory angular7 .net-core-2.1

尝试将 Azure AD 身份验证添加到具有 .net core 2.1 后端的 Angular 7 webapp。

但是,我在请求期间收到 CORS 错误。

“从来源‘https://login.microsoftonline.com/’访问位于‘https://localhost:5001/api/auth/login ......’(重定向自‘https://localhost:5001’)的 XMLHttpRequest 已被 CORS 策略阻止:否‘Access-Control-Allow -Origin' header 存在于所请求的资源上。”

所以我尝试在启动管道中添加一些 CORS 策略。

Startup.cs

        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }    

        public void ConfigureServices(IServiceCollection services)
        {
            services.AddCors(config => config
             .AddPolicy("SiteCorsPolicy", builder => builder
               .AllowAnyHeader()
               .AllowAnyMethod()
               .AllowAnyOrigin()
               .AllowCredentials()
              )
           ); // <--- CORS policy - allow all for now

            services.AddAuthentication(options =>
            {
                options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
                options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
                options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;                
            })
            .AddOpenIdConnect(options =>
            {
                options.Authority = "https://login.microsoftonline.com/MY_AD_DOMAIN.onmicrosoft.com";   // ad domain            
                options.ClientId = "my_client_id"; // client guid
                options.ResponseType = OpenIdConnectResponseType.IdToken;
                options.CallbackPath = "/auth/signin-callback";
                options.SignedOutRedirectUri = "https://localhost:5000";
                options.TokenValidationParameters.NameClaimType = "name";
            }).AddCookie();

            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);

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

        // 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("/Error");
                app.UseHsts();
            }

            app.UseCors("SiteCorsPolicy"); // <--- CORS policy
            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSpaStaticFiles();

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

            app.UseSpa(spa =>
            {
                spa.Options.SourcePath = "ClientApp";
                if (env.IsDevelopment())
                {
                    spa.UseAngularCliServer(npmScript: "start");
                }
            });
        }
    }

Angular 验证服务

login() {        
    const url = this.baseUrl + "api/auth/login";
    this._http.get(url).subscribe(response => {
      console.log(response);
    });
  }

还是我走错了路?我是否应该使用第三方“ADAL”npm 包 (https://www.npmjs.com/package/adal-angular) 从客户端提取 token ,然后将 token 传递给服务器进行验证?

如果我导航到登录 URL,例如:localhost:5000/api/auth/login --> 我将转到 AAD 登录页面,并在身份验证成功时重定向回来。但是,如果我从代码中触发它,则会出现 CORS 错误。

最佳答案

你的做法有点不对。 您已经配置了 OIDC + Cookie,但想用 XHR 调用它。

典型的方法是:

  • 在 API 上配置 JWT Bearer token 身份验证
  • 在前端使用 ADAL/MSAL 对用户进行身份验证 + 为后端获取访问 token
  • 将访问 token 附加到 XHR,以便对它们进行身份验证

一些可能有帮助的示例/文章:

请记住,ADAL 只能与 AAD v1 终结点一起使用,而 MSAL 只能与 v2 终结点一起使用。

关于c# - 添加 Azure AD 身份验证时出现 CORS 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53378607/

相关文章:

c# - SqlCommand 如何处理整数类型的参数?

c# - 通过 C# 通过 Outlook 2010 发送电子邮件

angular - 如何根据其他两个日期选择器字段在日期选择器字段上设置最小值和最大值 - Angular Material

javascript - 错误类型错误 : Cannot read property 'push' of null

node.js - 使用 Botframework 进行 OAuth 时的神奇代码。有办法吗?

c# - 将列表中的值分配给不包括空值的列表

c# - 如何使 wpf 组合框拉出特殊属性

c# - 如何从 .net 核心后端获取 angular 7 的预渲染 html 页面?

Azure 事件目录 SCIM : Deprovision member of a group not working

javascript - Angular 应用程序中 Azure AD OpenID Connect 注销的 CORS 问题