Aaron Straup Cope > Net-Blogger-0.8.3 > Net::Blogger::Engine::Movabletype

Download:
Net-Blogger-0.8.3.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  2
Open  2
View Bugs
Report a bug
Module Version: 0.2   Source   Latest Release: Net-Blogger-1.02

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

0.1.2

0.1.1

0.1

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.