Google文档列表Java API - Updated-min

时间:2012-04-23 10:39:58

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

似乎使用DocumentQuery使用updatedMin似乎无法正常工作。此查询确实查找自“when”以来创建的新文件和文件夹,但无法返回自修改,移动,删除或其他任何内容以来的文件。

DocumentQuery myQuery = new DocumentQuery(new URL("https://docs.google.com/feeds/default/private/full/"));
myQuery.setUpdatedMin(when);
DocumentListFeed entries = getDocsService().getFeed(myQuery, DocumentListFeed.class);

我意识到API可能会随着即将推出的Google云端硬盘而发生变化,在过渡期间有哪些变化?

1 个答案:

答案 0 :(得分:2)

要检索自特定日期以来已编辑过的文档,请使用edited-min查询参数。

DocumentQuery实例,您可以使用addCustomParameter设置此类值。

query.addCustomParameter(
    new Query.CustomParameter("edited-min", "<DATE_IN_RFC_3339_FORMAT>");