“共享驱动器" Google Apps脚本中的支持 [英] "Shared Drive" support in Google Apps Script

查看:155
本文介绍了“共享驱动器" Google Apps脚本中的支持的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在Google Apps脚本中编写JavaScript工具,以检查文档的某些属性,例如所有链接是否有效",权限设置是否正确"等等.我正在使用 https://developers.google.com中记录的API /apps-script/reference/drive/drive-app 来按ID查找文件,检查其权限,在Google云端硬盘中找到它们等.但是我发现共享驱动器"不能很好地与该API.

I am writing a JavaScript tool in Google Apps Script to check some properties of documents, like "are all links valid", "are permissions set correctly", and so on. I am using the API documented in https://developers.google.com/apps-script/reference/drive/drive-app to look up files by ID, check their permissions, locate them in Google Drive etc., but I found that "Shared Drives" don't work very nicely with that API.

例如,

  • 对于共享驱动器的根文件夹, 仅返回驱动器",而不返回驱动器的名称,
  • 即使mygroup@domain.com是共享驱动器的管理器",folder.getAccess('mygroup@domain.com')为NONE且folder.getViewers()为空,
  • DriveApp.getFolders() 迭代器.
  • for the root folder of a Shared Drive, Folder.getName() only returns "Drive" rather than the Drive's name,
  • even though mygroup@domain.com is a "Manager" of the Shared Drive, folder.getAccess('mygroup@domain.com') is NONE and folder.getViewers() is empty,
  • some folders in Shared Drives are not (always) included in the DriveApp.getFolders() iterator.

特别是第二点现在对我来说是一个障碍,但是我在这里想念的是什么?我还应该使用其他一些API,还是仅仅是应该报告的错误?是否有一些文档说明我可以和不能与共享驱动器一起使用的Drive API的哪些功能?

In particular the second point is a blocker for me now, but what am I missing here? Is there some other API I should be using, or is it simply a bug that I should report? Is there some documentation of what functionality of the Drive API I can and cannot use with Shared Drives?

推荐答案

使用高级驱动器服务而不是DriveApp

  • 实际上,共享驱动器不受范围有限的DriveApp的支持
  • 但是如果您启用 Advanced Drive Service,则您会能够在Apps脚本中使用 Drive API v2 的所有方法支持共享驱动器
  • Use the Advanced Drive Service instead of DriveApp

    • Indeed, shared drives are not supported by DriveApp which has a limited scope
    • But if you enable the Advanced Drive Service, yuo will be able to use in Apps Script all methods of the Drive API v2 which support shared drives
    • 示例:

      function myFunction() {
        var sharedDriveName = Drive.Drives.get("XXXXXXXXXXXXXXXXXXX").name;
        //it is important to specify that the folder is located on a shared drive with {"supportsAllDrives": true}
        var folderOnDriveName = Drive.Files.get("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",{"supportsAllDrives": true}).title;
        var folderPermissions = Drive.Permissions.list("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",{"supportsAllDrives": true});
      }
      

      这篇关于“共享驱动器" Google Apps脚本中的支持的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆