# it throws a Net::Twitter::Lite::Error object.
# You can catch and process these exceptions by using eval blocks and testing $@
## from http://search.cpan.org/perldoc?Net::Twitter::Lite#ERROR_HANDLING
-use Net::Twitter::Lite;
+use Net::Twitter::Lite::WithAPIv1_1;
use FindBin qw($Bin);
use YAML::Tiny;
use Data::Dumper;
}
sub login {
- # make Net::Twitter::Lite object and login
+ # make Net::Twitter::Lite::WithAPIv1_1 object and login
# param => hash object of configration
- # ret => Net::Twitter::Lite object
+ # ret => Net::Twitter::Lite::WithAPIv1_1 object
my $conf = shift @_;
- my $bot = Net::Twitter::Lite->new(
+ my $bot = Net::Twitter::Lite::WithAPIv1_1->new(
consumer_key => $conf->{consumer_key},
consumer_secret => $conf->{consumer_secret},
legacy_lists_api => 0,
use strict;
use warnings;
use utf8;
-use Net::Twitter::Lite;
+use Net::Twitter::Lite::WithAPIv1_1;
use YAML::Tiny;
my $config = (YAML::Tiny->read('config.yml'))->[0];
my $access_token = $config->{'access_token'};
my $access_token_secret = $config->{'access_token_secret'};
-my $nt = Net::Twitter::Lite->new(
+my $nt = Net::Twitter::Lite::WithAPIv1_1->new(
traits => ['API::REST', 'OAuth'],
consumer_key => $consumer_key,
consumer_secret => $consumer_key_secret,
# it throws a Net::Twitter::Lite::Error object.
# You can catch and process these exceptions by using eval blocks and testing $@
## from http://search.cpan.org/perldoc?Net::Twitter::Lite#ERROR_HANDLING
-use Net::Twitter::Lite;
+use Net::Twitter::Lite::WithAPIv1_1;
use Data::Dumper;
-my $bot = Net::Twitter::Lite->new(
+my $bot = Net::Twitter::Lite::WithAPIv1_1->new(
legacy_lists_api => 0,
);
# it throws a Net::Twitter::Lite::Error object.
# You can catch and process these exceptions by using eval blocks and testing $@
## from http://search.cpan.org/perldoc?Net::Twitter::Lite#ERROR_HANDLING
-use Net::Twitter::Lite;
+use Net::Twitter::Lite::WithAPIv1_1;
use FindBin qw($Bin);
use YAML::Tiny;
use Date::Parse qw(str2time);
}
sub login {
- # make Net::Twitter::Lite object and login
+ # make Net::Twitter::Lite::WithAPIv1_1 object and login
# param => hash object of configration
- # ret => Net::Twitter::Lite object
+ # ret => Net::Twitter::Lite::WithAPIv1_1 object
my $conf = shift @_;
- my $bot = Net::Twitter::Lite->new(
+ my $bot = Net::Twitter::Lite::WithAPIv1_1->new(
consumer_key => $conf->{consumer_key},
consumer_secret => $conf->{consumer_secret},
legacy_lists_api => 0,
sub or_search {
# search tweets containing keywords
- # param => Net::Twitter::Lite object, ArrayRef of keywords, since_id
+ # param => Net::Twitter::Lite::WithAPIv1_1 object, ArrayRef of keywords, since_id
# ret => HashRef of status_id (timeline order is destroyed)
# or undef (none is found)
sub mentions_ids {
# return status_ids mentioned to me
- # param => Net::Twitter::Lite object, since_id
+ # param => Net::Twitter::Lite::WithAPIv1_1 object, since_id
# ret => HashRef of status_id (timeline order is destroyed)
# or undef (none is found)
# it throws a Net::Twitter::Lite::Error object.
# You can catch and process these exceptions by using eval blocks and testing $@
## from http://search.cpan.org/perldoc?Net::Twitter::Lite#ERROR_HANDLING
-use Net::Twitter::Lite;
+use Net::Twitter::Lite::WithAPIv1_1;
use FindBin qw($Bin);
use YAML::Tiny;
use Data::Dumper;
}
sub login {
- # make Net::Twitter::Lite object and login
+ # make Net::Twitter::Lite::WithAPIv1_1 object and login
# param => hash object of configration
- # ret => Net::Twitter::Lite object
+ # ret => Net::Twitter::Lite::WithAPIv1_1 object
my $conf = shift @_;
- my $bot = Net::Twitter::Lite->new(
+ my $bot = Net::Twitter::Lite::WithAPIv1_1->new(
consumer_key => $conf->{consumer_key},
consumer_secret => $conf->{consumer_secret},
legacy_lists_api => 0,