2

我无法弄清楚如何使用 Google Apps 脚本访问 Google 文档中的评论。查看 API 参考,我发现只有CommentSection类,但它被标记为已弃用。寻求帮助。谢谢。

桑杰

4

2 回答 2

8

在这篇文章的初步讨论之后,我设法通过使用Drive API v2获得了文档中的评论。

这是我正在使用的代码:

function retrieveComments(fileId) {
  var info = [];
  //These arguments are optional
  var callArguments = {'maxResults': 100, 'fields': 'items(commentId,content,context/value,fileId),nextPageToken'}
  var docComments, pageToken;
  do { //Get all the pages of comments in case the doc has more than 100
    callArguments['pageToken'] = pageToken;
    //This is where the magic happens!
    docComments = Drive.Comments.list(fileId,callArguments);
    //I've created a "getCommentsInfo" to organize the relevant info in an array
    info = info.concat(getCommentsInfo(docComments.items));
    pageToken = docComments.nextPageToken;
  } while(pageToken);

  return(info);
}

但是,由于Drive API是“高级服务”,您必须将其添加到:

  1. 脚本项目- 使用“资源 > 高级 Google 服务”
  2. 谷歌开发者控制台- 通过:
    1. 确保在顶部栏中选择正确的项目
    2. 为项目启用“Drive API”
于 2016-02-18T23:57:34.820 回答
0

遗憾的是,目前无法使用 Google Apps 脚本访问文档的评论。您可以在问题跟踪器上为此提出功能请求。

于 2012-07-25T21:05:45.040 回答