我正在使用服务帐户连接到我个人 Google 帐户中的共享驱动器。Google Drive API 总是返回一个错误,指出找不到共享驱动器。我尝试了这两个:
向知道链接的任何人公开共享云端硬盘
使用服务帐户的电子邮件地址为特定用户(服务帐户)添加权限
共享驱动器的链接采用这种格式https://drive.google.com/drive/folders/xyz 我假设 driveId 是链接的最后一部分,xyz?还是那个文件夹ID?如果是这样,那么我如何找到 driveId?
// load the service account credentials
data, err := ioutil.ReadFile("service-account.json")
if err != nil {
log.Fatal("failed to read json file")
}
// parse the credentials file
conf, err := google.JWTConfigFromJSON(data, drive.DriveReadonlyScope)
if err != nil {
log.Fatal("failed to parse json file")
}
apiKeyBytes, err := ioutil.ReadFile("api-key.txt")
API_KEY := string(apiKeyBytes)
DRIVE_ID := "1dpl28_lhR1myDL2Y2gYKLRX1gNRlWdFm"
// send the GET request with all the parameters
client := conf.Client(context.Background())
parameters := "?key=" + API_KEY
parameters += "&corpora=drive"
parameters += "&includeItemsFromAllDrives=true"
parameters += "&supportsAllDrives=true"
parameters += "&driveId=" + DRIVE_ID
response, err := client.Get("https://www.googleapis.com/drive/v3/files" + parameters)
// read and print the response
data_buffer := make([]byte, 2048)
_, err = response.Body.Read(data_buffer)
response.Body.Close()
fmt.Println(string(data_buffer))
这是该程序运行时的输出:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "Shared drive not found: 1dpl28_lhR1myDL2Y2gYKLRX1gNRlWdFm",
"locationType": "parameter",
"location": "driveId"
}
],
"code": 404,
"message": "Shared drive not found: 1dpl28_lhR1myDL2Y2gYKLRX1gNRlWdFm"
}
}
我还在此链接https://developers.google.com/drive/api/v3/reference/files/list 上尝试了“试用此 API”工具,该工具使用绑定到我的个人 Google 帐户而不是服务帐户的 OAuth 2.0 ,这也失败了。
catspeake
相关分类