gpt4 book ai didi

google-apps-script - 访问 Google 文档中的评论

转载 作者:行者123 更新时间:2023-12-02 08:47:11 25 4
gpt4 key购买 nike

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

桑杰

最佳答案

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

这是我使用的代码:

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. Google Developers Console - 作者:
    1. 确保在顶部栏中选择正确的项目
    2. 为项目启用“Drive API”

关于google-apps-script - 访问 Google 文档中的评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11630812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com