New*_*wtt 5 javascript google-maps
我正面临一个相当突然的谷歌地图地理编码问题。直到昨天一切正常,但从那时起,我一直在向他们的地理编码 API 发出任何请求时收到 CORS 错误。
我的请求:
https://maps.googleapis.com/maps/api/geocode/json?latlng=18.92187618976372,72.82581567764282&key=<API_KEY>
Run Code Online (Sandbox Code Playgroud)
我的请求标头:
Provisional headers are shown
Accept:application/json, text/plain, */*
Origin:http://domain
Referer:http://domain/
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36
X-FirePHP-Version:0.0.6
Run Code Online (Sandbox Code Playgroud)
响应头:
access-control-allow-origin:*
alternate-protocol:443:quic,p=1
cache-control:public, max-age=86400
content-encoding:gzip
content-length:1279
content-type:application/json; charset=UTF-8
date:Thu, 23 Jul 2015 09:50:49 GMT
expires:Fri, 24 Jul 2015 09:50:49 GMT
server:mafe
status:200
vary:Accept-Language
x-frame-options:SAMEORIGIN
x-xss-protection:1; mode=block
Run Code Online (Sandbox Code Playgroud)
错误信息:
XMLHttpRequest cannot load https://maps.googleapis.com/maps/api/geocode/json?latlng=18.92187618976372,72.82581567764282&key=<API_KEY>. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' header when the credentials flag is true. Origin 'http://domain' is therefore not allowed access.
Run Code Online (Sandbox Code Playgroud)
我的系统的设置方式使得我的前端是从我的逻辑服务器的跨域提供服务的。为此,我将我的withCredentials标志设置为true。由于地图的 API 使用*通配符,withCredentials因此出现错误。
为了解决这个问题,我对 Maps 调用使用了单独的 XHR 方法,其中标志设置为 false。