我已请求
curl -v -X OPTIONS 'https://mydomain/v0/countries' --header 'Authorization: Bearer my_token'
下面我可以看到响应头:
< HTTP/2 200
< content-type: application/json
< content-length: 0
< date: Tue, 14 Jul 2020 15:26:10 GMT
< x-amzn-requestid: 1b2cc673-c84c-4949-bfc7-8340f50302c0
< access-control-allow-origin: *
< access-control-allow-headers: Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With
< access-control-request-headers: *
< x-amz-apigw-id: Pq029F_LDoEFsag=
< access-control-allow-methods: POST, OPTIONS, GET, PUT
< x-amzn-trace-id: Root=1-5f0dce92-3d4fb21c641373a4d3267554;Sampled=0
< access-control-allow-credentials: true
< x-cache: Miss from cloudfront
< via: 1.1 67e2031fa6e0a594e0371c2f15a6997b.cloudfront.net (CloudFront)
< x-amz-cf-pop: BLR50-C3
< x-amz-cf-id: LgRzPra6p1aAhncJDrVB937TVrbWy8igEnl4EF3jrPY1IqDbS8Z91g==
但是当我使用chrome的开发者控制台发出请求时:
(async function getData(url = '') {
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer my_token'
}
});
return response.json();
})('https://mydomain/v0/countries')
以下错误我可以看到:
Access to fetch at 'https://mydomain/v0/countries' from origin 'https://www.google.com' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
我不确定这里出了什么问题。谁能帮忙。
答案 0 :(得分:0)
当浏览器对服务器进行OPTIONS调用时,浏览器不会发送承载令牌。
这将是
curl -X OPTIONS https://mydomain/v0/currencies -i
在我的情况下,这将返回401并且未设置标头。 但是我还没有意识到,因为我总是使用不记名令牌来请求curl,直到我的一位同事指出这一点。
现在删除了对OPTIONS调用的身份验证检查及其正常工作。