NAME
MojoX::Twitter - Simple Twitter Client
SYNOPSIS
use
MojoX::Twitter;
my
= MojoX::Twitter->new(
consumer_key
=>
'x'
,
consumer_secret
=>
'z'
,
access_token
=>
'1-z'
,
access_token_secret
=>
'x'
,
);
my
$users
=
->request(
'GET'
,
'users/show'
, {
screen_name
=>
'support'
});
## streaming
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.