-
-
09 Jun 2022 03:01:29 UTC
- Distribution: MojoX-Twitter
- Module version: 0.07
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (316 / 0 / 2)
- Kwalitee
Bus factor: 1- 29.45% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (10.78KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
MojoX::Twitter - Simple Twitter Client
SYNOPSIS
use MojoX::Twitter; my $twitter = MojoX::Twitter->new( consumer_key => 'x', consumer_secret => 'z', access_token => '1-z', access_token_secret => 'x', ); my $users = $twitter->request('GET', 'users/show', { screen_name => 'support' }); ## streaming $twitter->streaming('https://userstream.twitter.com/1.1/user.json', { with => 'followings' }, sub { my ($tweet) = @_; say Dumper(\$tweet); });
DESCRIPTION
MojoX::Twitter is a simple Twitter client:
without OAuth authentication
auto sleep when X-Rate-Limit-Remaining is 0
AUTHOR
Fayland Lam <fayland@gmail.com>
COPYRIGHT
Copyright 2016- Fayland Lam
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
Module Install Instructions
To install MojoX::Twitter, copy and paste the appropriate command in to your terminal.
cpanm MojoX::Twitter
perl -MCPAN -e shell install MojoX::Twitter
For more information on module installation, please visit the detailed CPAN module installation guide.