当我执行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,但没有给出解决方案。