0

我在获取文档内容时遇到问题。我能够获取文档 ID,但无法获取文档的文本。我为此使用以下代码:

function getDocuments(user){
  var scope = 'https://docs.google.com/feeds/';
  //oAuth
  user="email-id"
  var fetchArgs = googleOAuth_('docs', scope);
  var url = scope + user+'/private/full?v=3&alt=json';
  var urlFetch = UrlFetchApp.fetch(url, fetchArgs);
  var json=Utilities.jsonParse(urlFetch.getContentText())
  var entry = json.feed.entry;
  var docs = [];
  for(var i in entry){
    var tempDoc = {};
    for(var j in entry[i]){

      tempDoc.id = entry[i].id.$t.split('%3A')[1];
    }
    docs.push(tempDoc);
    //Logger.log(docs[i])
  }


  var url='https://docs.google.com/feeds/download/documents/Export?docID=?'

  var data=UrlFetchApp.fetch(url,fetchArgs).getAs('text/html').getDataAsString()
  MailApp.sendEmail("email","","",{htmlBody:data})
}

//--------------------------------------------------------------------------------------
//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"};
}

它返回 html 格式的文档,但无法返回文档的内容。请尽快与我分享任何建议..

4

2 回答 2

2

如果您希望文档成为邮件的 html 正文,您可以使用以下代码:

    var id = 'the ID of your document'
    var bodytext = DocumentApp.openById(id).getText();//the text content of your doc (optional)
    var url = 'https://docs.google.com/feeds/';
    var doc = UrlFetchApp.fetch(url+'download/documents/Export?exportFormat=html&format=html&id='+id,
    googleOAuth_('docs',url)).getContentText(); 


    MailApp.sendEmail(destination email, subject, bodytext, {htmlBody:doc});

和 OAuth 功能:

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-09-25T16:38:08.970 回答
0

目前我还不知道有什么函数可以获取文件内容,可以参考文件分享链接的文档。

我希望能帮助你!

于 2012-09-25T12:19:25.193 回答