似乎使用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云端硬盘而发生变化,在过渡期间有哪些变化?
答案 0 :(得分:2)
要检索自特定日期以来已编辑过的文档,请使用edited-min
查询参数。
从DocumentQuery
实例,您可以使用addCustomParameter
设置此类值。
query.addCustomParameter(
new Query.CustomParameter("edited-min", "<DATE_IN_RFC_3339_FORMAT>");