Google Appscript UrlFetchApp因IPv4地址上的“地址不可用”错误而失败

时间:2017-08-24 06:10:06

标签: javascript google-apps-script google-apps urlfetch

对于有效的IP地址,

/about失败并显示“地址不可用”错误。

以下是对网址和响应的 ⚓ ~ curl http://35.154.29.221 {"Version":"1.1.0","MinVersion":"451db4ace9ec079fe94f44e01277b92617dbf2b4","BuildTime":"2017-04-11T19:43:50+0530"} 的示例curl请求

function fetch() {
    url = "http://35.154.29.221";
    var response = UrlFetchApp.fetch(url);
    if (!response) {
        Logger.log("Error contacting server!")
        return
    }
    Logger.log(response.getContentText());
}

followig appscript片段相当于上面的curl但是它无法正常工作

@classmethod

它已经工作了大约6个月了。

0 个答案:

没有答案