有没有办法从Google Team Drive访问我的数据?我使用了提供的代码,但只能访问我的普通驱动器,而不能访问Team Drive:
!apt-get install -y -qq software-properties-common python-software-properties module-init-tools
!add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null
!apt-get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfuse fuse
from google.colab import auth
auth.authenticate_user()
from oauth2client.client import GoogleCredentials
creds = GoogleCredentials.get_application_default()
import getpass
!google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret} < /dev/null 2>&1 | grep URL
vcode = getpass.getpass()
!echo {vcode} | google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret}
我感谢每一个帮助!
您可以将REST API用于manage your Team Drive。检查这个documentation。以下是此资源的methods列表:
- 创建 创建一个新的Team Drive。
- 删除 永久删除用户为其组织者的团队驱动器。 Team Drive不能包含任何未处理的项目。
- 得到 按ID获取Team Drive的元数据。
- 名单 列出用户的团队驱动器。
- 更新 更新Team Drive的元数据