Google Maps Geocode API浏览器请求失败:引荐来源网址限制

时间:2018-08-08 14:50:02

标签: google-maps google-maps-api-3

以前有关此主题的问题是关于从服务器调用API的问题。在这种情况下,我从用户浏览器中调用它。 没有设置限制时,它可以正常工作。

  

接受来自这些HTTP引荐来源网址(网站)的请求(可选)   *为通配符。如果您将此留空,那么任何引荐来源的请求都会被接受。在使用此键之前,请确保添加引荐来源网址   生产。

设置限制后,我收到以下错误

{ "error_message": "API keys with referer restrictions cannot be used with this API.", "results": [], "status": "REQUEST_DENIED" }

我尝试在凭据配置中配置各种通配符和域组合,但没有任何效果。

示例:https:// .example.com /

我正在尝试使用jQuery Ajax访问以下API。

  

https://maps.googleapis.com/maps/api/geocode/json?latlng=49.6580%2C22.6012&key=XXXX

 $.ajax({
                url: 'https://maps.googleapis.com/maps/api/geocode/json',
                type: 'GET',
                async : false,
                dataType: 'json',
                data: {
                    latlng: '47.6580,23.6012',
                    key: 'XXXXX'
                },
                success: function (res) {
                   console.log(res);
                   $("#result").text(JSON.stringify(res,null,4));
                }
            });

有什么想法吗?

谢谢。

0 个答案:

没有答案