Zimbra API 入门
我想知道如何使用 Zimbra API。 我到处寻找 API,但没有找到关于它的好的参考资料/教程。
我有一个用 Ruby on Rails 开发的 Web 应用程序,我想与 Zimbra 进行通信,以便从我的应用程序中获取日历项目并将其放入我自己的日历界面中。
我可以这样做吗? 我该从哪里开始呢?
I am wondering how I can go about using the Zimbra API. I have looked everywhere for an API, and I have found no good references/tutorials about it.
I have a web application that I have developed in Ruby on Rails that I would like to communicate to Zimbra in order to fetch the calendar items to put in my own Calendar interface from within my application.
Can I do this ? and where can I start ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Zimbra 提供soap api 来获取日历,您可以使用 XmlRpc 请求将该日历数据发送到您的应用程序。
Zimbra provide the soap api to get the calender and you can sent that calender data to you application using the XmlRpc Request.
这里有一些文档:
SOAP API
SOAP Admin API
您还可以下载 zimbra 并查看 ZimbraServer/docs/soap.txt
here are some doc :
SOAP API
SOAP Admin API
you can also download zimbra and look at ZimbraServer/docs/soap.txt
这里有一个java版本 其中还有一个用于 Zimbra 管理 api 的 WSDL 文件。 您可以使用它来生成 ROR 客户端。
There is a java version here which also has a WSDL file for Zimbra's admin api. You may be able to use this to generate a client for ROR.