从Google合作实验室的Google Team Drive访问数据

时间:2018-07-22 23:20:22

标签: google-drive-api google-colaboratory google-drive-team-drive

是否可以从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}

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您可以将REST API用于manage your Team Drive。选中此documentation。以下是此资源的methods列表:

  
      
  • 创建      
        
    • 创建一个新的团队驱动器。
    •   
  •   
  • 删除      
        
    • 永久删除用户为其组织者的Team Drive。 Team Drive不能包含任何未处理的项目。
    •   
  •   
  • 获取      
        
    • 通过ID获取Team Drive的元数据。
    •   
  •   
  • 列表      
        
    • 列出用户的团队驱动器。
    •   
  •   
  • 更新      
        
    • 更新Team Drive的元数据
    •   
  •