标签: cors asp.net-web-api
我必须使用内容类型JSON制作CORS。我们在get方法中使用了[ApiAuthorization]过滤器,如下所述。
[ApiAuthorization]
[AcceptVerbs("Get", "Options")] [ApiAuthorization] public response GetDetails() {
如果是预检(选项)请求,我们会收到401 Unauthorized错误。在这种情况下使用CORS传递身份验证标头的正确方法是什么?