quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)
问题描述
我正在 Google Apps 脚本中编写一个 JavaScript 工具来检查文档的某些属性,例如所有链接都有效"、权限设置是否正确"等等.我正在使用 https://developers.google.com 中记录的 API/apps-script/reference/drive/drive-app 按 ID 查找文件、检查其权限、在 Google Drive 等中定位它们,但我发现共享驱动器"不能很好地与那个 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.
例如,
- 对于共享云端硬盘的根文件夹,
Folder.getName()只返回Drive"而不是 Drive 的名称, - 即使
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.comis a "Manager" of the Shared Drive,folder.getAccess('mygroup@domain.com')is NONE andfolder.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?
推荐答案
使用 AdvancedDrive Service 而不是 DriveApp
- 确实,共享驱动器不受范围有限的
DriveApp支持 - 但如果您启用
Advanced Drive Service,你将能够在 Apps Script 中使用 的所有方法支持共享驱动器的 Drive API v2 - Indeed, shared drives are not supported by
DriveAppwhich 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
Use the Advanced Drive Service instead of DriveApp
示例:
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 脚本中的支持的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“共享驱动器"Google Apps 脚本中的支持
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
