NAME

Net::Blogger::Engine::Movabletype - Movabletype Blogger API engine


SYNOPSIS

 my $mt = Net::Blogger->new(engine=>"movabletype");
 $mt->Proxy("http://mtserver.com/mt-xmlrpc.cgi";);
 $mt->Username("foo");
 $mt->Password("bar");
 my $postid_1 = $mt->newPost(postbody=>\"hello world") 
    || croak $mt->LastError();
 my $postid_2 = $mt->metaWeblog()->newPost(
                                           title=>"hello",
                                           description=>"world",
                                           publish=>1,
                                           );


DESCRIPTION

This package inherits Net::Blogger::Engine::Base and implements methods specific to a MovableType XML-RPC server.


Blogger API OBJECT METHODS

$pkg->getRecentPosts(\%args)

Releases prior to Net::Blogger 0.85 accepted a list of arguments rather than a reference. Version 0.85+ are backwards compatible.


Movable Type (mt) API OBJECT METHODS

$pkg->mt()

Returns an object. Woot!


metaWeblog API OBJECT METHODS

$pkg->metaWeblog()

Returns an object. Woot!


VERSION

0.21


DATE

$Date: 2003/03/05 04:30:42 $


AUTHOR

Aaron Straup Cope


SEE ALSO

the Net::Blogger::Engine::Base manpage

the Net::Blogger::Engine::Movabletype::mt manpage

the Net::Blogger::Engine::Userland::metaWeblog manpage

http://aaronland.net/weblog/archive/3719


LICENSE

Copyright (c) 2001-2003 Aaron Straup Cope.

This is free software, you may use it and distribute it under the same terms as Perl itself.