场景很简单,我需要从另一台服务器(不同于API服务器)登录以检索访问令牌。
我Microsoft.Owin.Cors
在API服务器上安装了软件包。在Startup.Auth.cs
文件中的下public void ConfigureAuth(IAppBuilder app)
,我添加了
app.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll);
在WebApiConfig.cs
中的下public static void Register(HttpConfiguration config)
,我添加了以下几行:
// Cors
var cors = new EnableCorsAttribute("*", "*", "GET, POST, OPTIONS");
config.EnableCors(cors);
我还应该改变什么?