my $radio = Blogger->new(engine=>"radio");



$radio->Proxy(PROXY);



$radio->Username(USERNAME);



$radio->Password(PASSWORD);







my $postid = undef;







$postid = $radio->newPost(



      postbody => \"hello world",



      publish=>1);







$postid = $radio->metaWeblog()->newPost(



        title=>"hello",



        description=>"world",



        publish=>1);







my $post = $radio->metaWeblog()->getPost(postid=>$postid);







$radio->metaWeblog()->editPost(



		 postid=>$postid,



		 title => $post->{title}." edited",



		 description => "wakka wakka wakka",



		 categories => [ "Perl" ],



		 publish => 1,



		 );







$radio->deletePost(postid=>$postid);



I will finish this up tonight, but I may not post a tarball until the morning. I need to add the category methods and maybe export a metaWeblog object rather than simply overriding the Blogger API methods; something anyway. Currently these methods are only available through the Blogger.pm "radio" engine. Props to Dave for setting up the public site for testing.