我有一个脚本,它提取驱动文件的一些元数据。我想知道谁是观众和评论者,但是Drive文档中没有太多信息......
https://developers.google.com/apps-script/reference/drive/file#getViewers()
据我所知,任何能够看到该文件的人都可以发表评论,但我不确定......有人能澄清我吗?
我找到了答案。最后,我使用了Advance Google Service Drive。
我创建了这个公式,它返回一个带有评论者的数组:
function getRolesByFile(fileId){
var fileApiRest = Drive.Permissions.list(fileId).items;
var arrayCommenters = [];
for(var a = 0; a< fileApiRest.length; a++){
var fileApiRestUser = fileApiRest[a].emailAddress;
var fileAPIRestRole = fileApiRest[a].role;
var fileApiRestAdditional = fileApiRest[a].additionalRoles;
if(fileApiRestAdditional != undefined){
arrayCommenters.push(fileApiRestUser)
}
}
return arrayCommenters.toString();
}