我正在使用google-api-python-client
来调用Google云端硬盘API。
根据the API's spec,get
应返回包含许多字段的JSON。但我的程序只返回id
,name
,mimeType
和kind
,如下所示:
{
"id": <omitted>,
"name": "myfile.txt",
"mimeType": "text/plain",
"kind": "drive#file"
}
如何使用此API获取有关文件的其他元数据?