Pedro Figueiredo > Net-Twitter-Cabal-0.01 > Net::Twitter::Cabal

Download:
Net-Twitter-Cabal-0.01.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.01   Source   Latest Release: Net-Twitter-Cabal-0.03

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.01

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 ^

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.