我在google开发者控制台上为我正在处理的脚本输入重定向uri时遇到问题。当我尝试进入uri时,我收到一条错误消息:
$.getJSON(geocodingAPI, function (json) {
json.results.forEach( function (item) {
var address = item.formatted_address;
console.log('Address : ', address);
var latitude = item.geometry.location.lat;
console.log('Latitude : ', latitude);
var longitude = item.geometry.location.lng;
console.log('Longitude : ', longitude);
// ...
});
});
当我进入现有项目时,我一直在设置重定向uri,我无法删除我输入的uri。
我是否需要更改任何设置以授予我访问权限以便能够在项目上编辑我的重定向uri?