在响应中询问thumbnailLink字段时,Google Drive Rest API V3更新失败

时间:2016-06-17 09:00:50

标签: google-api google-drive-api google-api-php-client google-apis-explorer

当我执行files.update调用并要求将thumbnailLink字段包含在响应中时,文件实际上已更新,但API返回500错误。当我删除thumbnailLink字段时,一切正常。我可以使用APIs Explorer

重现此问题
  • 这是一个错误,还是我错过了什么?

请求

PATCH https://www.googleapis.com/drive/v3/files/1B......ID.......?fields=id%2CthumbnailLink

响应

{
 "error": {
  "code": 500,
  "message": null
 }
}

请求

PATCH https://www.googleapis.com/drive/v3/files/1B......ID.......?fields=id

响应

{
 "id": "1B......ID......."
}
带有files.insert的

Related issue,但没有给出解决方案。

0 个答案:

没有答案