我正在尝试使用Drive Picker访问Team驱动器文件。
但是我收到此错误
{
"code" : 401,
"errors" : [ {
"domain" : "global",
"location" : "Authorization",
"locationType" : "header",
"message" : "Invalid Credentials",
"reason" : "authError"
} ],
"message" : "Invalid Credentials"
}
因此,我尝试签入Google API Explorer,并通过传递fileId
和supportsTeamDrives = true
来调用该API。但是在Google API资源管理器中,它也会给我同样的错误。
答案 0 :(得分:0)
访问Teamdrives使用另一种方法。使用方法Teamdrives: list
列出特定Teamdrive的文件,从那里您可以从响应中获取Teamdrive id
,如下所示:
{
"kind": "drive#teamDrive",
"id": "XXXXXXIDXXXXXXX",
"name": "TheFileName"
}
然后您可以使用特定文件id
从方法Teamdrives: get
中获取特定文件的元数据。