似乎使用使用 updatedMin 的 DocumentQuery 似乎无法正常工作。此查询确实找到了自“何时”以来创建的新文件和文件夹,但未能返回自该时间以来被修改、移动、删除或其他任何内容的文件。
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 Drive 发生变化,在此期间有什么变化吗?