繁体   English   中英

当请求的凭据模式为“include”时,响应中的“Access-Control-Allow-Origin”标头的值不能是通配符“*”

[英]The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'

我的应用程序在IE浏览器中运行良好, 但由于CORS问题它无法在Chrome浏览器中运行。

问题是

无法加载http:// localhost:52487 / api / Authentication / :当请求的凭据模式为“include”时,响应中的“Access-Control-Allow-Origin”标头的值不能是通配符“*” 。 因此不允许来源' http:// localhost:4200 '访问。 XMLHttpRequest发起的请求的凭据模式由withCredentials属性控制。

我在前端使用angular 2并在后端使用Asp.net core 1.0。 我试过了

这是我的启动代码

public void ConfigureServices(IServiceCollection services)
{
    services.AddCors(options =>
    {
        options.AddPolicy("AllowAll", p =>
        {
            p.AllowAnyOrigin()
            .AllowAnyHeader()
            .AllowAnyMethod();
        });
    });

    // Add framework services.
    services.AddMvc();
    // Add functionality to inject IOptions<T>
    services.AddOptions();
    // Add our Config object so it can be injected
    services.Configure<Data>(Configuration.GetSection("Data"));

    services.Configure<COCSettings>(Configuration.GetSection("COCSettings"));

    services.Configure<EmailSettings>(Configuration.GetSection("EmailSettings"));

    AppSettings.ConnectionString = Configuration["Data:DefaultConnectionString"];

    // *If* you need access to generic IConfiguration this is **required**
    services.AddSingleton<IConfiguration>(Configuration);

    // Injecting repopsitories with interface
    AddServices(services);

    // Add Json options
    services.AddMvc().AddJsonOptions(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver());
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
    loggerFactory.AddConsole(Configuration.GetSection("Logging"));
    loggerFactory.AddDebug();
    app.UseMiddleware(typeof(ErrorHandling));
    app.UseMiddleware(typeof(GetNoCache));
    app.UseCors("AllowAll");
    app.UseMvc();
}

这就是我从UI(角度)方面调用API的方式

constructor(private http: Http) {
    this.headers = new Headers();
    this.headers.append('Accept', 'application/json');
}

GetMaintainCOC(FYONId) {
    return this.http.get(this.apiUrl + 'GetCertificationofConformity?FYONId=' + FYONId, { withCredentials: true })
    .map(responce => <any>responce.json())
    .catch(error => {
        return Observable.throw(error);
    });
}

这是工作,当我打电话AllowCredentials()AddPolicy

 services.AddCors(options =>
            {
                options.AddPolicy("AllowAll", p =>
                {
                    p.AllowAnyOrigin()
                    .AllowAnyHeader()
                    .AllowAnyMethod()
                    .AllowCredentials();
                });
            });

我从Access-Control-Allow-Origin获得了这个想法的关键:当credentials标志为true时,不允许使用“*”,但是没有Access-Control-Allow-Credentials标头

我的理解

我在角度http服务调用中使用{ withCredentials: true } 所以我想我应该在CORS服务中使用AllowCredentials()策略。

好吧,你似乎已经解决了,但这是简单的答案。

如果在请求定义中设置withCredentials标志,则会在请求中传递cookie等。 否则他们将不会通过。

如果您的服务器返回任何Set-Cookie响应头,那么您必须返回Access-Control-Allow-Credentials: true响应头,否则将不会在客户端上创建 cookie。 如果你这样做,你需要指定的确切来源Access-Control-Allow-Origin响应头,因为Access-Control-Allow-Origin: *是不兼容的凭据。

这样做:

  • 在请求中传递withCredentials
  • 传递Access-Control-Allow-Origin: <value-of-Origin-request-header>响应头
  • 传递Access-Control-Allow-Credentials: true响应头

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM