gpt4 book ai didi

c# - ASP.NET-CORE 2.2 SignalR CORS

转载 作者:太空宇宙 更新时间:2023-11-03 17:48:05 26 4
gpt4 key购买 nike

我对 ASP.Net Core 2.2 和 SignalR 有疑问。我在 asp.net 核心和 Angular 之间使用 SignalR。当我使用 Asp.net core 2.0 时,一切正常。但是当我使用具有相同代码的 asp.net core 2.2 时,相同的类会出现 cors 错误。

Warning: The CORS protocol does not allow specifying a wildcard (any) origin and credentials at the same time. Configure the policy by listing individual origins if credentials needs to be supported.



我怎么解决这个问题?

谢谢

最佳答案

当我使用这个 cors 配置问题时解决了。谢谢

 services.AddCors(options =>
{
options.AddPolicy("CorsPolicy",
builder => builder
//.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader()
.AllowCredentials()
.SetIsOriginAllowed((host) => true) //for signalr cors
);
});

关于c# - ASP.NET-CORE 2.2 SignalR CORS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54303273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com