1

我无法从该用户的管理员帐户访问域用户的数据......我尝试在下面的 url 下制作谷歌文档的域用户的存档:'https://docs.google.com/feeds/[userName]/private /档案'

和这个 url 来获取域用户的联系方式:https://www.google.com/m8/feeds/contacts/[userName]/full"

但它不起作用......请给出一些建议或其他解决方案来做到这一点。

for contacts, code is :
 function getContacts(user){
      var scope = 'https://www.google.com/m8/feeds/';
      //oAuth
      user="user@yourdomain.com"

      var fetchArgs = googleOAuth_('contacts', scope);
      var url = scope +'contacts/'+ user+'/full?v=3&alt=json';
      var urlFetch = UrlFetchApp.fetch(url, fetchArgs);
    }

    //--------------------------------------------------------------------------------------
    //Google oAuth
    //Used by getDocuments(user)
    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(consumerKey);
      oAuthConfig.setConsumerSecret(consumerSecret);
      return {oAuthServiceName:name, oAuthUseToken:"always", method: "GET"};
    }
4

1 回答 1

1

我编写了一些使用 Google Docs 原生 API 访问用户提要的代码。你可以在这里查看。 https://sites.google.com/site/appsscripttutorial/urlfetch-and-oauth/get-the-document-list-of-a-domain-user

可以将相同的概念扩展到执行您在问题中提出的其他目标

于 2012-09-21T19:08:02.087 回答