WWW::Bebo - Automate interaction with Bebo.com |
WWW::Bebo - Automate interaction with Bebo.com
Version 0.02
This module provides methods to automate interaction with your BeBo.com account.
use WWW::Bebo;
my $bebo = WWW::Bebo->new();
Post a blog entry to your personal page.
$bebo->post_blog( subject => $subject, # Subject of the blog message => $message, # Body of the blog );
Same as post_blog, but posts it to the specified band's page instead of to your personal page. Logged in user must of course have access to post bulletins for the specified band (i.e. must be a band member).
$bebo->post_band_blog( band_id => $band_id, # ID of the band. Go to the band page and # Look in the URL for GrpID=123456. Logged in user # must have access. # If not included, posts to the logged-in user's # home page. subject => $subject, message => $message )
Grant Grueninger, <grantg at cpan.org>
Please report any bugs or feature requests to
bug-www-bebo at rt.cpan.org
, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc WWW::Bebo
You can also look for information at:
Copyright 2006 Grant Grueninger, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
WWW::Bebo - Automate interaction with Bebo.com |