在 Google 文档中插入评论

Posted

技术标签:

【中文标题】在 Google 文档中插入评论【英文标题】:Insert comment into Google doc 【发布时间】:2014-04-15 09:25:36 【问题描述】:

我知道这完全是一个菜鸟问题。我想通过 Apps 脚本将预先填充的评论插入到 Google 文档中,并提供用户回复评论的选项。

我找到了这个:

https://developers.google.com/drive/v2/reference/comments/insert

但是,我不确定如何将其嵌入到我的 Apps 脚本中。 有没有人有任何示例代码或能够指出正确的方向?我只将 Apps 脚本用于简单的任务,并且对 OAuth 没有太多经验(我假设我需要这个来让代码工作)

非常感谢。

【问题讨论】:

【参考方案1】:

您正在查看 SDK 文档,如果您尝试编写适用于 google drive 的软件,这将很有帮助。

您要查看的是应用程序脚本文档,这里是: https://developers.google.com/apps-script/reference/document/

这不是一个很好的答案,但我希望它能为您指明正确的方向!

【讨论】:

【参考方案2】:

您的问题类似于this one 这是我们使用的代码:

function insertDriveComment(fileId, comment, context) 
  var driveComment = 
    content: comment,
    context: 
      type: 'text/html',
      value: context
    
  ;
  Drive.Comments.insert(driveComment, fileId);  

当然,您需要在开发者控制台中激活 API 来管理 oAuth。 Just follow the steps here. 请记住,您不能像手动那样以编程方式将评论附加到 Google 文档中的单词,因为文档评论的锚点是专有的(查看the page here 底部的视频) 希望对您有所帮助。

【讨论】:

以上是关于在 Google 文档中插入评论的主要内容,如果未能解决你的问题,请参考以下文章

如何使用Google Drive SDK查询评论受让人?

在 Google BigQuery 中插入/更新 Firestore 文档导出

从 Google Places API 获得超过 5 条评论

PHP 中的 Google Play 商店评论 API

使用服务帐户回答 google play 上的评论

获取 google 评论并创建与 Google API 一起使用的评论表单