UrlFetchApp.fetch在1分钟后返回“超时”

时间:2019-03-28 06:35:49

标签: google-apps-script google-apps-script-api

1分钟后出现超时错误。从下面的代码。 我可以设置超时值吗?

function apiPost(token, url, body) {
  var response = UrlFetchApp.fetch(url, {
    method: 'post',
    contentType: 'application/json',
    headers: {
      'Authorization': token
    },
    payload: JSON.stringify(body)
  });
  return JSON.parse(response.getContentText());
}

0 个答案:

没有答案