The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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 METHODS

$pkg->getRecentPosts(%args)

MovableType (mt) API METHODS

$pkg->mt()

metaWeblog API METHODS

$pkg->metaWeblog()

VERSION

0.2

DATE

May 04, 2002

AUTHOR

Aaron Straup Cope

SEE ALSO

Net::Blogger::Engine::Base

Net::Blogger::Engine::Movabletype::mt

Net::Blogger::Engine::Userland::metaWeblog

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

CHANGES

0.2

  • Added support for the mt (MovableType) API

  • Added support for the metaWeblog API

  • Added quotes to $VERSION

  • Updated POD

0.1.2

  • Updated POD

0.1.1

  • Updated POD

0.1

  • Initial revision

LICENSE

Copyright (c) 2001-2002 Aaron Straup Cope.

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