我无法弄清楚如何使用 Google Apps 脚本访问 Google 文档中的评论。查看 API 参考,我发现只有CommentSection类,但它被标记为已弃用。寻求帮助。谢谢。
桑杰
我无法弄清楚如何使用 Google Apps 脚本访问 Google 文档中的评论。查看 API 参考,我发现只有CommentSection类,但它被标记为已弃用。寻求帮助。谢谢。
桑杰
在这篇文章的初步讨论之后,我设法通过使用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是“高级服务”,您必须将其添加到:
遗憾的是,目前无法使用 Google Apps 脚本访问文档的评论。您可以在问题跟踪器上为此提出功能请求。