场景很简单,我需要从另一台服务器(不同于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);
我还应该改变什么?
慕尼黑5688855
慕少森
RISEBY