如何使用Zend Gdata课程将Google文档导出(即从Google下载到我的本地)?
我可以使用Zend_Gdata_Docs方法轻松检索所有文档的列表: getAllDocuments()和getDocumentListFeed()
Zend(http://framework.zend.com/manual/en/zend.gdata.docs.html)为Google文档列表数据API提供的示例包括“上传文档”但不包含相应的“下载文档“?
谢谢!
答案 0 :(得分:2)
好的一种方法是我能够实现这一点:使用:
Zend_Gdata方法performHttpRequest()
我传递的第一个参数是'GET',第二个参数是前一个getDocumentListFeed()调用给出的条目内容网址($ entry-> content-> getSrc())。
不确定是否有更好的方法,但这就像一两行代码......