使用 Zend Gdata 导出/下载 Google 文档

发布于 2024-12-13 18:24:55 字数 272 浏览 3 评论 0原文

如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

£烟消云散 2024-12-20 18:24:55

好的,我能够实现此目的的一种方法是使用:

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文