我希望获取上次修改Google云端硬盘上文件的用户名或用户名。这就是我所拥有的:

while (trashedFiles.hasNext()) {

   var trashedFile = trashedFiles.next();
   var trashedName = trashedFile.getName();
   var trashedURL  = trashedFile.getUrl();
   var fileID      = trashedFile.getId()
   var trashedUpdated =  Utilities.formatDate(trashedFile.getLastUpdated(), timezone, "yyyy-MM-dd HH:mm");
   var trashedCreated =  Utilities.formatDate(trashedFile.getDateCreated(), timezone, "yyyy-MM-dd HH:mm");
   //var LastModifiedBy = Drive.Files.get([fileID]).lastModifyingUserName();
   var LastModifiedBy = Drive.Files.get([fileID]).lastModifyingUser();

}


我收到此错误:
TypeError:无法在对象中调用属性lastModifyingUser

谢谢

最佳答案

希望这会有所帮助:

https://developers.google.com/drive/v2/reference/revisions

请按名称查找属性:lastModifyingUserName

让我知道我是否记错了。

关于javascript - 如何获取上次修改的用户名(电子邮件)或姓名?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32799001/

10-15 03:14