Luca
Luca

Reputation: 1874

Best way to download data from Wordpress website

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

Answers (2)

keatch
keatch

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

grunk
grunk

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

Related Questions