为什么Google Drive API会返回不完整的回复?

时间:2016-11-07 05:16:40

标签: python api google-api google-api-python-client

我正在使用google-api-python-client来调用Google云端硬盘API。

根据the API's specget应返回包含许多字段的JSON。但我的程序只返回idnamemimeTypekind,如下所示:

{
    "id": <omitted>,
    "name": "myfile.txt",
    "mimeType": "text/plain",
    "kind": "drive#file"
}

如何使用此API获取有关文件的其他元数据?

1 个答案:

答案 0 :(得分:0)

好的。我找到了答案。规格页面上的信息不完整。正如another page中所指出的,API调用接受fields参数,该参数指定要返回的字段。