我每天都会在Google Adwords脚本中使用“URLFetch”。我想知道我当天有多少请求。有谁知道如何做到这一点意味着Google Scripts?
答案 0 :(得分:-1)
您可能需要查看此页面以了解更多https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app:
function onOpen() {
// The code below logs the HTML code of the Google home page.
var response = UrlFetchApp.fetch("http://www.google.com/");
Logger.log(response.getContentText());
}