gmail 插件中 UrlFetchApp.fetch() 的 HTTP 失败回调
HTTP failure callback for UrlFetchApp.fetch() in gmail addon
我想在 HTTP 请求失败时编写回调。我如何将它链接到 UrlFetchApp.fetch()?
请参考下面的HTTP请求。
// Make a GET request.
UrlFetchApp.fetch('http://www.google.com/');
请注意fetch
函数是同步的。它不提供回调参数,也不 return 承诺。
可以通过 UrlFetchApp.fetch(url, params)
函数捕获异常。您可以将 muteHttpExceptions
参数传递到函数调用的参数位置。这样您就可以自己检查响应代码并做出适当的响应。文档:https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app#fetchurl-params
UrlFetchApp.fetch('http://www.google.com/', {muteHttpExceptions: true});
muteHttpExceptions (Boolean) if this is set to true, the fetch will not
throw an exception if the response code indicates failure, and will
instead return the HTTPResponse (default: false)
另一种方法是简单的 try/catch 语句。我想您可以记录错误或做出适当的回应。
try {
UrlFetchApp.fetch('http://www.google.com/');
}
catch(e) {
// e contains error response
}
我想在 HTTP 请求失败时编写回调。我如何将它链接到 UrlFetchApp.fetch()? 请参考下面的HTTP请求。
// Make a GET request.
UrlFetchApp.fetch('http://www.google.com/');
请注意fetch
函数是同步的。它不提供回调参数,也不 return 承诺。
可以通过 UrlFetchApp.fetch(url, params)
函数捕获异常。您可以将 muteHttpExceptions
参数传递到函数调用的参数位置。这样您就可以自己检查响应代码并做出适当的响应。文档:https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app#fetchurl-params
UrlFetchApp.fetch('http://www.google.com/', {muteHttpExceptions: true});
muteHttpExceptions (Boolean) if this is set to true, the fetch will not throw an exception if the response code indicates failure, and will instead return the HTTPResponse (default: false)
另一种方法是简单的 try/catch 语句。我想您可以记录错误或做出适当的回应。
try {
UrlFetchApp.fetch('http://www.google.com/');
}
catch(e) {
// e contains error response
}