我正在使用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'
})
答案 0 :(得分:0)
我在Drive v2中使用了您提供的链接Comments: insert指南。我可以使用Try it!框在我的电子表格中插入评论。 只需在filedId中填写您的spreadsheetId即可。选择一个或所有可选字段,依此类推。当我执行通话时,评论已发布在我的电子表格中。
我没有收到任何电子邮件。