如何使用 Google Docs API 获取电子表格的早期版本?
Google Docs 上的“以前版本”界面非常原始。它甚至不允许您选择两个任意版本进行比较(但如果我错了,请纠正我。)
如何通过 API 访问以前的版本?
The "previous version" interface on Google Docs is very primitive. It wouldn't even allow you to select two arbitrary versions for comparison (but correct me if I'm wrong.)
How can I access the previous versions via the API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档列表 API 协议指南 (v3.0) 表示文档修订和任意文件修订可通过修订提要获得。
因此,您可以通过以下方式获取特定文档的修订版:
导出任何单个文档的内容时,基本上可以通过
访问修订版
Export?docId=&revision=0
您应该能够借助文档列表 API 的 Java 或 .NET 库自行构建这些 URI。据我了解,它们仍然是实验室项目。
查看更多信息:
http://code.google.com/apis/documents/docs /3.0/developers_guide_protocol.html#RevisionHistory
我记得在某处读到 Google 正在对其客户端库进行彻底检查,因此等待 Google I/O 2011 可能是明智之举。
The Protocol Guide for Document List API (v3.0) says that document revisions and arbitrary file revisions are available via the revisions feed.
So you can get revisions for a particular document with:
When exporting contents for any single document, revisions are basically accessed with
Export?docId=<doc_id>&revision=0
You should be able to construct those URIs yourself with the help of the Java or .NET libraries for the Documents List API. It's my understanding that they are still labs projects though.
See more at:
http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#RevisionHistory
I remember reading somewhere that Google is doing an overhaul of their client libraries, so it might be smart to wait for Google I/O 2011 for example.