0

我想在拥有超过 40 000 个用户的域上执行 UserManager.getAllUsers()。该脚本运行超过 5 分钟并且从未完成。有没有办法像 fomr SitesApp.getalldescendants 那样拆分这个请求?

此致

4

3 回答 3

1

请看一下这个问题。请给它加星标并尝试那里提到的解决方法。

于 2012-07-03T16:45:11.253 回答
0

您可以使用 Google Apps Reporting API 进行帐户报告。您可以同时使用 UrlFetchApp 和 Oauth 来获取帐户报告。在一次调用中,这最多可以返回 100, 000 个 CSV 格式的帐户。大约 3 个月前,我在 Apps 脚本中实现了这一点,以获取我域中每个帐户的磁盘使用情况报告。 https://developers.google.com/google-apps/reporting/#Accounts_Report

于 2012-07-04T11:58:54.333 回答
0

这是一个以 CSV 字符串格式返回帐户数据的小代码。要运行代码,您必须是 Google Apps 域的管理员。您可以解析 CSV 字符串并获取必填字段

    //Refernce API URL
    // https://developers.google.com/google-apps/reporting/#accounts_report
    function startHere(){
      var domain = UserManager.getDomain();
      var fDate = Utilities.formatDate(new Date(), Session.getTimeZone(), 'yyyy-MM-dd');
      var url = 'https://www.google.com/hosted/services/v1.0/reports/ReportingData';
      var fetchArgs = googleOAuth_('Reporting', url);
      fetchArgs.method = 'POST';
      var rawXML = '<?xml version="1.0" encoding="UTF-8"?>'
          +'<rest xmlns="google:accounts:rest:protocol" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance ">'
          +'<type>Report</type>'
          +'<domain>'+domain+'</domain>'
          +'<date>'+fDate+'</date>'
          +'<page>1</page>'
          +'<reportType>daily</reportType>'
          +'<reportName>accounts</reportName>'
          +'</rest>';
      fetchArgs.payload = rawXML;
  //fetchArgs.contentType = "application/xml";
  fetchArgs.headers = {"Content-type": "application/atom+xml charset=UTF-8"};  
  var csvData = UrlFetchApp.fetch(url, fetchArgs).getContentText();
}


    //Google oAuth, helper function
    function googleOAuth_(name,scope) {
      var oAuthConfig = UrlFetchApp.addOAuthService(name);
      oAuthConfig.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken?scope="+scope);
      oAuthConfig.setAuthorizationUrl("https://www.google.com/accounts/OAuthAuthorizeToken");
      oAuthConfig.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken");
      oAuthConfig.setConsumerKey("anonymous");
      oAuthConfig.setConsumerSecret("anonymous");
      return {oAuthServiceName:name, oAuthUseToken:"always"};
    }
于 2012-07-04T16:09:09.017 回答