I'm looking at providing an api to my application. There already exists the xml-rpc server and it has a nice clean interface to let packages register their own apis there. But xml-rpc feels a bit antiquated and a little more complicated to deal with than a simple REST api (using the term loosely; basically meaning a simple url GET with query parameters).
Is there anything I've missed for providing this kind of service? If it's not already there, is there any interest other than mine? It's not difficult to provide this sort of thing as one-off behavior, but it would be nice to have a general way to do it that handles things like managing API keys, handling input in plain xml or json format, and similarly encoding the results.
Request notifications