The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Bebo - Automate interaction with Bebo.com

VERSION

Version 0.02

SYNOPSIS

This module provides methods to automate interaction with your BeBo.com account.

    use WWW::Bebo;

    my $bebo = WWW::Bebo->new();

METHODS

post_blog( %options )

 Post a blog entry to your personal page.

 $bebo->post_blog(
    subject => $subject,  # Subject of the blog
    message => $message,  # Body of the blog
 );

post_band_blog( %options )

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
 )

AUTHOR

Grant Grueninger, <grantg at cpan.org>

BUGS

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?Queue=WWW-Bebo. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc WWW::Bebo

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

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.