使用Drive API 2.0插入评论,但是不要将邮件发送给文件所有者?

时间:2016-08-01 10:20:44

标签: javascript google-api google-drive-api google-drive-realtime-api

我正在使用Drive comment API在电子表格中插入评论。但它会向邮件所有者发送邮件。我在我的应用程序中明确地这样做。因此,所有者会收到两封关于此评论的邮件(一封来自谷歌,一封来自我的应用)。我在google appscript while adding a commenter做了同样的事情。我想知道是否有任何我可以在ajax调用或使用gapi

中执行此操作

这是我的代码:

   $.ajax({
                url: 'https://www.googleapis.com/drive/v2/files/' + fileId + '/comments',
                method: 'POST',
                headers: {
                    'Authorization': 'Bearer ' + accessToken
                },
                data: JSON.stringify(body),
                dataType: 'json',
                contentType: 'application/json; charset=utf-8'
            })

1 个答案:

答案 0 :(得分:0)

我在Drive v2中使用了您提供的链接Comments: insert指南。我可以使用Try it!框在我的电子表格中插入评论。 enter image description here 只需在filedId中填写您的spreadsheetId即可。选择一个或所有可选字段,依此类推。当我执行通话时,评论已发布在我的电子表格中。

enter image description here

我没有收到任何电子邮件。