c# - ASP.NET Core CORS WebAPI : no Access-Control-Allow-Origin header

标签 c# azure angular asp.net-core cors

我已将 ASP.NET Core Web API 部署到 Azure,并且可以使用 Swagger 或 Fiddler 等 Web 调试器访问其端点。在这两种情况下(Swagger 中的同一来源,使用我计算机上的 Fiddler 的不同来源),在访问 API 时,我得到了预期的结果,并在我的 Startup.cs 中启用了 CORS,如下所示:

  1. services.AddCors(); 添加到 ConfigureServices

  2. 将中间件添加到Configure:我知道这里的顺序很重要( ASP.NET 5: Access-Control-Allow-Origin in response ),因此我将此调用放在方法的顶部,仅在其之前进行日志记录或诊断中间件;这是我的完整方法:


public void Configure(IApplicationBuilder app, IHostingEnvironment env, 
    ILoggerFactory loggerFactory,
    IDatabaseInitializer databaseInitializer)
{
    loggerFactory.AddConsole(Configuration.GetSection("Logging"));
    loggerFactory.AddDebug();
    loggerFactory.AddNLog();

    // to serve up index.html
    app.UseDefaultFiles();
    app.UseStaticFiles();

    // http://www.talkingdotnet.com/aspnet-core-diagnostics-middleware-error-handling/
    app.UseDeveloperExceptionPage();
    app.UseDatabaseErrorPage();

    // CORS
    // https://docs.asp.net/en/latest/security/cors.html
    app.UseCors(builder =>
            builder.WithOrigins("http://localhost:4200", "http://www.myclientserver.com")
                .AllowAnyHeader()
                .AllowAnyMethod());

    app.UseOAuthValidation();
    app.UseOpenIddict();
    app.UseMvc();

    databaseInitializer.Seed().GetAwaiter().GetResult();
    env.ConfigureNLog("nlog.config");

    // swagger
    app.UseSwagger();
    app.UseSwaggerUi();
}

localhost CORS 在开发过程中使用,指的是 Angular2 CLI 应用程序。 CORS 在本地运行良好,我的客户端和 API 应用程序位于同一本地主机上的不同端口,因此这是“真正的”跨源(我之所以这么说是因为我在这里找到了建议:https://weblog.west-wind.com/posts/2016/Sep/26/ASPNET-Core-and-CORS-Gotchas:作者该帖子指出,响应中的 CORS header 仅在实际需要时发送,即在真正的跨源环境中。

使用 Fiddler 我可以成功访问远程 API,但我没有得到 Access-Control-Allow-Origin header 。因此,当从浏览器(通过我的客户端应用程序)调用 API 时,即使服务器返回 200,AJAX 请求也会失败。示例 Fiddler 请求(成功):

GET http://mywebapisiteurl/api/values HTTP/1.1
User-Agent: Fiddler

回复:

HTTP/1.1 200 OK
Transfer-Encoding: chunked
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/8.0
X-Powered-By: ASP.NET
Set-Cookie: ARRAffinity=3d551180c72208c1d997584c2b6119cf44e3a55c868f05ffc9258d25a58e95b1;Path=/;Domain=prinapi.azurewebsites.net
Date: Thu, 01 Dec 2016 10:30:19 GMT

["value1","value2"]

当尝试访问部署在 Azure 上的远程 API 时,我的客户端应用程序始终无法执行 AJAX 请求,并出现错误:

No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://www.myclientserver.com' is therefore not allowed access.

这是使用 Angular2 的示例客户端代码(使用 Plunker):

import {Component, NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import { Http, Headers, Response } from '@angular/http';
import { HttpModule } from '@angular/http';

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2>Hello {{name}}</h2>
      <button (click)="test()">test</button>
    </div>
  `,
})
export class App {
  name:string;
  constructor(private _http: Http) {
    this.name = 'Angular2'
  }
  public test() {
    this._http.get('http://theapisiteurlhere/api/values',
    {
        headers: new Headers({
          'Content-Type': 'application/json'
        })
    })
    .subscribe(
      (data: any) => {
        console.log(data);
      },
      error => {
        console.log(error);
      });
  }
}

@NgModule({
  imports: [ BrowserModule, HttpModule ],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}

总而言之,ASPNET API 服务器似乎没有返回预期的 CORS header ,因此我在不同源上托管的基于浏览器的客户端失败了。然而,至少从上面引用的文档来看,CORS 设置似乎还不错;我处于真正的跨域环境中;我将中间件放在其他中间件之前。也许我错过了一些明显的东西,但谷歌搜索这些就是我找到的所有建议。有什么提示吗?

更新

回复@Daniel J.G:来自 fiddler 的请求/响应成功:

GET http://theapiserver/api/values HTTP/1.1
User-Agent: Fiddler
Host: theapiserver
Origin: http://theappserver/apps/prin

和:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/8.0
Access-Control-Allow-Origin: http://theappserver/apps/prin
X-Powered-By: ASP.NET
Set-Cookie: ARRAffinity=3d551180c72208c1d997584c2b6119cf44e3a55c868f05ffc9258d25a58e95b1;Path=/;Domain=theapiserver
Date: Thu, 01 Dec 2016 14:15:21 GMT
Content-Length: 19

["value1","value2"]

据报道,来自 Angular2 (Plunker) 的请求/响应失败了。通过检查网络流量,我只能看到预检请求:

OPTIONS http://theapiserver/api/values HTTP/1.1
Host: theapiserver
Proxy-Connection: keep-alive
Access-Control-Request-Method: GET
Origin: http://run.plnkr.co
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36
Access-Control-Request-Headers: content-type
Accept: */*
Referer: http://run.plnkr.co/h17wYofXGFuTy2Oh/
Accept-Encoding: gzip, deflate, sdch
Accept-Language: en-US,en;q=0.8,it;q=0.6

HTTP/1.1 204 No Content
Server: Microsoft-IIS/8.0
X-Powered-By: ASP.NET
Set-Cookie: ARRAffinity=3d551180c72208c1d997584c2b6119cf44e3a55c868f05ffc9258d25a58e95b1;Path=/;Domain=theapiserver
Date: Thu, 01 Dec 2016 14:23:02 GMT

此后,请求失败,并且不再有流量发送到服务器。报告的问题是对预检请求的响应未通过访问控制检查,同样是因为响应中缺少 header :

XMLHttpRequest cannot load http://theapiserver/api/values. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://run.plnkr.co' is therefore not allowed access.

最佳答案

这是我自己问题的答案,从评论中复制:我没有注意到Azure门户中有一个CORS部分。如果我不在那里输入任何允许的来源,我的基于代码的配置似乎完全不相关。这对我来说看起来很奇怪,因为我被迫在这里重复 URL,但是一旦我将 * 添加到允许的来源,它就起作用了。

关于c# - ASP.NET Core CORS WebAPI : no Access-Control-Allow-Origin header,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40908949/

相关文章:

azure - 如何使用逻辑应用取消长时间运行的 ADF 管道

azure - 应用程序洞察 TraceListener : Setting Severity level

angular - 发现很难将控制台上显示的数据显示在 View 中

angular - 使用 window.open(...) 时带有 Angular 的浏览器选项卡标题

c# - 常量、只读和可变值类型

c# - 使用单独的 msi 文件 C# 安装 Outlook COM 插件 bundle

azure - 接收器突触管道中的 Datalake 数据库

JavaScript Puzzle : Initialize 2 Date variables with same value, 但结果它们代表不同的日历日期

javascript - 如何使用从 Controller 传递的值检查 Kendo Treeview 中的复选框?

c# - 防止实现不是接口(interface)方法的方法