我每天都会在 Google Adwords 脚本中使用“URLFetch”。我想知道当天还剩多少请求。有谁知道如何做到这一点意味着谷歌脚本?
您可能想查看此页面以了解更多信息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());
}