我有:
results = drive_service.files().list(**body).execute()
在哪里:
body = {
'q': query_string,
'maxResults': 1,
}
为了提高性能,我想限制返回的字段,如下所述:https ://developers.google.com/drive/performance#partial-response
如果我只是添加'fields': 'id,items,title,mimeType'
到body
我得到一个错误。我不确定如何添加该限制?
有点相关,python api会自动gzip请求吗?