WordPress::XMLRPC is a Perl module that offers an API to the Wordpress RPC.
SYNOPSIS
use WordPress::XMLRPC;
my $o = WordPress:::XMLRPC->new({
username => 'author1',
password => 'superpass',
proxy => 'http://mysite.com/xmlrpc.php',
});
my $post = $o->getPost(5); # id 5
# let's change the title
$post->{title} = 'I did not like the old title.';
# let's save the changes back to the server..
$o->editPost(5, $post, 1); # 1 is publish
I wanted to interact via the command line to a wordpress blog's xmlrpc.php file. Bascially this is interaction with xmlrpc.php as client. This module is not meant for speed, it is meant for convenience.
Product's homepage
Requirements:
· Perl