Reputation: 1874
I want to write an iOS app that must download data from a website using Wordpress as content managment system. What' s the best way to do this? thanks!
Upvotes: 0
Views: 471
Reputation: 2207
Uhm, one solution is to use the wordpress export function (wp-admin/export.php). It gives to you an XML file that you can parse.
After you are logged into the account, you can issue a simple get. Or, you can download your posts/pages via XML-RPC, as already noted!http://codex.wordpress.org/XML-RPC_wp
Upvotes: 1
Reputation: 14938
What kind of data ? If this is post, page , comment you should use XML-RPC : http://codex.wordpress.org/XML-RPC_wp
Upvotes: 1