I’m working on a client app for iOS to edit the built-in Wiki/Blog on Mac OS X Server (Snow Leopard & Lion).
It seems that we are able to use MetaWeblog , Atom API(I’ve tried but failed) or XML-RPC.
However, I can’t find any API document for it.
So my question is, where can I find the documents, or some open source samples?
All samples I found can’t deal with the OS X Server.
Much appreciate!
Peak
Update:
Heres the standard structure of the Wiki system:
I can’t even get the list of the ‘group_name’ under ~/Groups/

The javascript source code for the wiki is not obfuscated, and it seems simple enough to serve as documentation. For example, the authentication process:
So you send a POST request to auth/plain_login, containing just the username/password in the POST data and an X-CSRF-Token header who’s value comes from the
<input type="hidden" name="authenticity_token" />element on the page. The server returns a JSON string containing ‘success’ boolean.You can also use safari/chrome’s developer tools to monitor ajax requests to/from the server, for example this is the JSON contents of a PUT request to save a wiki page: