使用 Zend Gdata 导出/下载 Google 文档
如何使用 Zend Gdata 类导出(即从 Google 下载到本地)Google 文档?
我可以使用 Zend_Gdata_Docs 方法轻松检索所有文档的列表: getAllDocuments() 和 getDocumentListFeed()
Zend (http://framework.zend.com/manual/en/zend.gdata.docs.html) 为 Google 文档列表数据 API 提供的示例包括“上传文档”但不是相应的“下载文档”?
谢谢!
How do I export (i.e. Download it from Google to my local) a Google Document using the Zend Gdata class?
I can retrieve a list of all the documents easily enough with the Zend_Gdata_Docs methods:
getAllDocuments() and and getDocumentListFeed()
The examples given by Zend (http://framework.zend.com/manual/en/zend.gdata.docs.html) for the Google Document List Data API include an "Upload a Document" but not the corresponding "Download a Document"?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我能够实现此目的的一种方法是使用:
Zend_Gdata 方法 PerformHttpRequest()
我传递的第一个参数是 'GET',第二个参数是给定的条目内容 URL ($entry->content->getSrc())通过之前的 getDocumentListFeed() 调用。
不确定是否有更好的方法,但这就像一两行代码......
Ok one way I was able to achieve this was by using:
Zend_Gdata method performHttpRequest()
The first param i passed was 'GET' and the second was the entry content URL ($entry->content->getSrc()) given by the previous getDocumentListFeed() call.
Not sure if there is a better way but that was like one or two lines of code...