Enable OWIN Cross-origin Request
2020-12-13 03:55
标签:style http color 使用 width os 微软出了一套解决方案可以解决 “允许WebAPI的 CORS 请求” http://www.asp.net/web-api/overview/security/enabling-cross-origin-requests-in-web-api 如果你同时使用了OWIN,即使使用了这个,也不能使OWIN 允许 cross-origin 请求。 OWIN 是基于kantana的一套OAUTH2.0解决方案。 所以要使用 DLL Microsoft.OWIN.Cros
I installed
In 或者 最直接的方法()!!!! 把这段加在web.config的 Enable OWIN Cross-origin Request,搜素材,soscw.com Enable OWIN Cross-origin Request 标签:style http color 使用 width os 原文地址:http://blog.csdn.net/lglgsy456/article/details/36439653Microsoft.Owin.Cors
package
on the API Server. In Startup.Auth.cs
file,
under public
void ConfigureAuth(IAppBuilder app)
, I added inapp.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll);
WebApiConfig.cs
,
under public
static void Register(HttpConfiguration config)
, I added in these lines:// Cors
var cors = new EnableCorsAttribute("*", "*", "GET, POST, OPTIONS");
config.EnableCors(cors);
上一篇:ZJOI2019 语言
文章标题:Enable OWIN Cross-origin Request
文章链接:http://soscw.com/essay/28509.html