
Net::Blogger::Engine::Slash - Adds support for the Slashcode SOAP API.

# Create object.
my $blogger = Net::Blogger->new(engine=>"slash",debug=>1);
# Same old, same old.
$blogger->Username(1234);
$blogger->Password("*****");
$blogger->Proxy("http://use.perl.org/journal.pl");
# Hey, this is different!
$blogger->Uri("http://use.perl.org/Slash/Journal/SOAP");
# This (the good old Blogger API) ...
$blogger->newPost(postbody=>\"hello\nworld");
# ...is the same as (slashcode API) ...
$blogger->slash()->add_entry(subject=>"hello",body=>"world");

Net::Blogger::Engine::Slash allows a program to interact with the Slashcode SOAP API using the Blogger API. Neat, huh?

This method is not supported by the Slash engine.
This method is not supported by the Slash engine.



0.1

May 31, 2002

Aaron Straup Cope

Net::Blogger::Engine::Slash::slashcode

Copyright (c) 2002, Aaron Straup Cope. All Rights Reserved.
This is free software, you may use it and distribute it under the same terms as Perl itself.