我正在使用Google Drive API(v2)并用于制作成功的补丁请求,如下所述: https://developers.google.com/drive/v2/reference/properties/patch 为了在我的文档中添加新的元数据属性( myNewPr )。 但是,最近(可能1-2天)我开始收到404错误消息:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "Property not found: key = myNewPr and visibility = PRIVATE",
"locationType": "other",
"location": "property"
}
],
"code": 404,
"message": "Property not found: key = myNewPr and visibility = PRIVATE"
}
}
有什么想法吗?当我使用insert(https://developers.google.com/drive/v2/reference/properties/insert)进行测试时,似乎可以正常工作。