假设我的网站是 www.example.com ,我有一个map.php页面,我想在其中访问place api。我添加了所有凭据以及HTTP引荐来源网址为example.com/map.php。 但是它仍然会给我“不允许引荐来源网址”错误。
<script src="https://maps.googleapis.com/maps/api/js?key=****&libraries=places"></script>
<script type="text/javascript">
function initialize() {
var options = {
componentRestrictions: {country: "in"}
};
var input = document.getElementById('txtcity');
new google.maps.places.Autocomplete(input, options);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
答案 0 :(得分:0)