以下Google Apps脚本获取URL的HTTP状态。但是,当我尝试在arrayformula中使用它时,它将返回“超出限制”错误。我需要在脚本中进行一些修改才能使其正常工作吗?谢谢
function getStatusCode(url){
var options = {
'muteHttpExceptions': true,
'followRedirects': false
};
var response = UrlFetchApp.fetch(url, options);
return response.getResponseCode();
}
编辑:第二种方法,需要调整
function getStatusCode(url){
var options = {
'muteHttpExceptions': true,
'followRedirects': false
};
var foo = UrlFetchApp.getRequest(url, options);
var response = UrlFetchApp.fetchAll(foo);
return response.getResponseCode();
}