GData文档列表API:检索文件夹列表&文件类型

时间:2012-08-20 14:55:44

标签: google-drive-api google-docs-api

我想检索用户帐户中所有文件夹的列表&具有特定mime类型的文件,例如application / msword&应用/ PDF

我使用下一个查询: https://docs.google.com/feeds/default/private/full/folder%3Aroot/contents/-/%7Bhttp%3A%2F%2Fschemas.google.com%2Fg%2F2005%23kind%7Dapplication%2Fmsword/%7Bhttp%3A%2F%2Fschemas.google.com%2Fg%2F2005%23kind%7Dapplication%2Fpdf/%7Bhttp%3A%2F%2Fschemas.google.com%2Fg%2F2005%23kind%7Dimage%2Fjpg?max-results=1000&showfolders=true&sortorder=ascending

作为回应,我只获得pdf和MS Word文件,没有文件夹

1 个答案:

答案 0 :(得分:0)

您使用的是较旧的docslist而不是新的Drive SDK。

在云端硬盘中你可以使用这个

  

GET   https://www.googleapis.com/drive/v2/files?maxResults=1000&q=mimeType+%3D+ '应用%2Fmsword' +或+ mime类型+%3D + '应用%2Fpdf' +或+ mime类型+%3D + '应用%2Fvnd.google-apps.folder' +&安培;键= {YOUR_API_KEY}

如果你去https://developers.google.com/drive/v2/reference/files/list#try-it,你可以亲自试试。