标签: python-2.7 google-drive-api
:https://developers.google.com/drive/v2/reference/files/list
在它的python示例中,如何在代码中使用maxresult和q搜索? 我试图在参数列表中分配这些,但它无法正常工作。
答案 0 :(得分:1)
尝试类似:
result = drive.files()。list(q ='“me”in owner',maxResults = 10).execute()
这将获取您拥有的前10个文件。