作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用以下简单的策略:
<policies>
<inbound>
<cors>
<allowed-origins>
<origin>http://microfost.com/</origin>
</allowed-origins>
<allowed-methods preflight-result-max-age="300">
<method>GET</method>
<method>POST</method>
<method>PATCH</method>
<method>DELETE</method>
</allowed-methods>
<allowed-headers>
<header>content-type</header>
<header>accept</header>
<header>Authorization</header>
</allowed-headers>
</cors>
</inbound>
</policies>
HTTP 请求
OPTIONS https://XXXX.azure-api.net/demo/XXX/XXX/* HTTP/1.1
Host: XXXX.azure-api.net
Ocp-Apim-Trace: true
Ocp-Apim-Subscription-Key: <secret>
Origin: http://microfost.com
Access-Control-Request-Headers: Authorization
Access-Control-Request-Method: GET
回复内容
Access-Control-Allow-Origin: http://microfost.com
Ocp-Apim-Trace-Location: <trace>
Date: Mon, 27 Feb 2017 20:09:14 GMT
Content-Length: 0
我收到此消息并期望 Origin 响应 header ,但我没有收到 3 个 API 中的 2 个的任何内容(1 个 API 正在使用与预期相同的策略)。
**Inbound**
[...]
cors (0 ms)
"Cross domain request was well formed and was allowed to proceed. CORS related headers were added to the response."
**Backend**
No records.
Outbound
cors (0 ms)
{
"message": "Headers starting with 'Access-Control-' were removed from the response. ",
"headers": []
}
transfer-response (0 ms)
{
"message": "Response headers have been sent to the caller."
}
在我看来,这是一种无意义的行为,并且可能是一个错误。在提交之前我想问一下您是否有任何解释?为什么我会得到这个?
Headers starting with 'Access-Control-' were removed from the response.
最佳答案
在 Azure API 管理中执行 CORS 有两种方法。自动 - 只需在所需范围内删除和配置 CORS 策略,APIM 将负责响应与现有操作匹配的 OPTIONS 请求。
或者您可以选择手动方式 - 创建一个单独的操作来响应 OPTIONS 方法并在策略中手动形成响应,可能使用返回响应策略。
您遇到的问题是因为您两者都有。他们基本上是冲突的。 CORS 策略将请求识别为跨源,并安排在请求完成后进行处理,但 OPTIONS 操作级别的返回响应策略会破坏此处理管道,并在 CORS 策略采取行动之前立即返回响应。
由于您使用的是 CORS 策略,因此您应该从 API 中删除 OPTIONS 操作才能正常工作。
关于Azure API 管理 CORS : Why do I get "Headers starting with ' Access-Control -' were removed...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42494925/
我是一名优秀的程序员,十分优秀!