Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
XML-RPC Interface for Vanilla Commands
I'm actually in the process of writing an Add On for Vanilla using the PEAR XML-RPC Client/Server.
The Add On will create an XML-RPC interface for creating/deleting/etc categories, discussions, comments, etc.
I have two concerns though:
1. This Add On does not follow the traditional Order of Execution, at least not as far as I understand it. I'd like to end page processing as soon a request hits my extension. Is there anyway to force page rendering within an extension?
2. Any suggestions on how to secure this application? Again, an issue with the OoE, I basically need some way of validating user information within the XML-RPC message.
I have installed the Janine Add On, it inspired me to create this Add On because I was looking for a way to handle all kinds of XML-RPC messages, not just WordPress related ones.
0
This discussion has been closed.
Comments
Many webservices (blogger, Flickr, Wordpress, delicious, ...) offer this kind of thing where you post data to an endpoint (essentially a URL) to for example retrieve data, or add/edit/delete. If you have a blog and use some software on your desktop to add entries on your blog, then this software will most likely use an API which is exposed via XML-RPC.
For those interested in XML-RPC:
http://en.wikipedia.org/wiki/Xmlrpc
Adam.
Alternatively you could save yourself a but load of time and slap this logo on it