我有同樣的問題在3比例使用AWS AMI時,並能夠通過添加APP_KEY解決它,並APP_ID爲期權請求允許的頭。
在測試在郵遞員工作的請求,但不會通過Chrome工作。在我的情況下,當瀏覽器發佈預檢選項時,檢查它會導致拒絕,因爲CORS默認設置不允許app_key和app_id頭。
添加對這些頭的支持可以通過在「Access-Control-Allow-Headers」頭的末尾添加一個條目來實現。我在此構型命名爲單獨的文件cors.conf:
#### CORS ####
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,app_id,app_key';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
#### CORS END ####
然後將cors.conf被列入下的任何 「位置/」 塊在nginx.conf:
...
location/{
include /opt/openresty/nginx/conf/cors.conf;
set $provider_key null;
set $cached_key null;
...
一旦這個改變使得我的瀏覽器能夠成功發出請求。
CORS on Nginx文檔被用作基準,我注意到只有OPTIONS部分需要修改才能得到想要的結果。