| Net-Twitter-Cabal documentation | view source | Contained in the Net-Twitter-Cabal distribution. |
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 0.03
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;
Create a new cabal and initialise the configuration.
my $conspiracy = Net::Twitter::Cabal->new( {
'config' => 'config.yml';
} );
Start the Cabal:
$conspiracy->run;
Pedro Figueiredo, <me at pedrofigueiredo.org>
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.
You can find documentation for this module with the perldoc command.
perldoc Net::Twitter::Cabal
You can also look for information at:
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.
| Net-Twitter-Cabal documentation | view source | Contained in the Net-Twitter-Cabal distribution. |