【发布时间】:2012-05-03 23:20:36
【问题描述】:
似乎在使用 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 发生变化,在此期间有什么变化吗?
【问题讨论】:
标签: google-docs-api google-drive-api