脚本超时

时间:2019-05-02 16:23:37

标签: google-apps-script google-sheets limit google-sheets-formula custom-function

我有付费版的GSUITE(个人/基本),我被告知允许我的基本脚本每天运行3200次-我要做的只是在工作表中填充“邮政编码”列在另一栏中的地址上。

这是我的剧本:

function geozipmh(a) {
    var response=Maps.newGeocoder().reverseGeocode(lat(a),long(a));
    return response.results[0].formatted_address.split(',')[2].trim().split(' ')[1];
}
function lat(pointa) {
    var response = Maps.newGeocoder().geocode(pointa);
    return response.results[0].geometry.location.lat
}
function long(pointa) {
    var response = Maps.newGeocoder().geocode(pointa);
    return response.results[0].geometry.location.lng
}

然后,在工作表本身的E2单元格中,我有:= geozipmh(D2)-D2包含完整地址。

脚本运行良好,大约有200次,我得到了:

服务在一天内被调用太多次。geocode。第7行

我到底在做错什么?

我已经与Google Suite支持人员交谈

0 个答案:

没有答案