如何计算剩余使用次数URLFetch?

时间:2017-02-23 16:21:46

标签: google-apps-script

我每天都会在Google Adwords脚本中使用“URLFetch”。我想知道我当天有多少请求。有谁知道如何做到这一点意味着Google Scripts?

1 个答案:

答案 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());
  
}

相关问题