Joomla 和 XMLRPC
我如何开始使用 joomla 来使用 XML-RPC?我一直在寻找文档,但一无所获...
我想连接到 joomla 服务器(启用 Core Joomla XML-RPC 插件后),并且能够执行诸如登录和添加文章之类的操作,如果可能的话,调整文章的所有参数。
我的 xml-rpc 客户端实现将使用 python。
How do I get started with getting going with XML-RPC with joomla? I've been looking around for documentation and finding nothing...
I'd like to connect to a joomla server, (after enabling the Core Joomla XML-RPC plugin), and be able to do things like login and add an article, and tweak all the parameters of the article if possible.
My xml-rpc client implementation will be in python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
《Mastering Joomla 1.5 Extension and Framework Development》一书对此有很好的解释。
Joomla 有一个 fex XML-RPC 插件,可以让您做一些事情,例如博客 API 接口。 (plugins/xmlrpc/blogger.php)
您应该创建自己的 XML-RPC 插件来执行您想要的自定义操作。
the book "Mastering Joomla 1.5 Extension and Framework Development" has a nice explanation of that.
Joomla has a fex XML-RPC plugins that let you do a few things, like the blogger API interface. (plugins/xmlrpc/blogger.php)
You should create your own XML-RPC plugin to do the custom things you want.