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

问题描述 投票:0回答:1

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

urlfetch quota google-ads-script
1个回答
-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());
  
}
© www.soinside.com 2019 - 2024. All rights reserved.