The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Twitter::Cabal - Manage posters to a Twitter stream

You have a Twitter stream than can be updated by several people. Dealing with authorisation is painful, and there's no way to identify a poster.

Net::Twitter::Cabal let's you manage this stream from a central point, where you have full control of who can post and without the need to distribute the account's credentials.

VERSION

Version 0.03

SYNOPSIS

Using Net::Twitter::Cabal you can create centralised endpoints for a group of people to post to a single Twitter stream:

    use Net::Twitter::Cabal;

    my $conspiracy = Net::Twitter::Cabal->new( {
                'config' => 'config.yml',
        } );
        
        $conspiracy->run;

FUNCTIONS

new

Create a new cabal and initialise the configuration.

        my $conspiracy = Net::Twitter::Cabal->new( {
                'config' => 'config.yml';
        } );

run

Start the Cabal:

        $conspiracy->run;
        

AUTHOR

Pedro Figueiredo, <me at pedrofigueiredo.org>

BUGS

Please report any bugs or feature requests to bug-net-twitter-cabal at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Twitter-Cabal. 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 Net::Twitter::Cabal

You can also look for information at:

ACKNOWLEDGEMENTS

  • Pedro Melo, for suggestions, testing, and holding my hand wrt XMPP

  • Robin Redeker, author of AnyEvent::XMPP, for listening to my whining and clearing my doubts

  • Nuno Nunes, for testing

COPYRIGHT & LICENSE

Copyright 2009 Pedro Figueiredo, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.