summary refs log tree commit diff
path: root/eg/twitter.pl
diff options
context:
space:
mode:
Diffstat (limited to 'eg/twitter.pl')
-rw-r--r--eg/twitter.pl44
1 files changed, 44 insertions, 0 deletions
diff --git a/eg/twitter.pl b/eg/twitter.pl
new file mode 100644
index 0000000..965e5c8
--- /dev/null
+++ b/eg/twitter.pl
@@ -0,0 +1,44 @@
+use strict;
+use warnings;
+use Net::HTTP::Spore;
+
+use Encode;
+use Getopt::Long;
+
+GetOptions(
+    'spec=s'            => \my $specification,
+    'consumer_key=s'    => \my $consumer_key,
+    'consumer_secret=s' => \my $consumer_secret,
+    'token=s'           => \my $token,
+    'token_secret=s'    => \my $token_secret,
+);
+
+my $client = Net::HTTP::Spore->new_from_spec($specification);
+
+$client->enable('Format::JSON');
+$client->enable(
+    'Auth::OAuth',
+    consumer_key    => $consumer_key,
+    consumer_secret => $consumer_secret,
+    token           => $token,
+    token_secret    => $token_secret,
+);
+
+my $timeline = $client->public_timeline( format => 'json' );
+if ( $timeline->status == 200 ) {
+    my $tweets = $timeline->body;
+    print ">> Timeline\n";
+    foreach my $tweet (@$tweets) {
+        print $tweet->{user}->{screen_name} . " says " . encode_utf8($tweet->{text}) . "\n";
+    }
+    print "\n\n";
+}
+
+my $friends_timeline = $client->friends_timeline(format => 'json', include_rts => 1);
+if  ($friends_timeline->code == 200) {
+    my $tweets = $friends_timeline->body;
+    print ">> Friend timeline\n";
+    foreach my $tweet (@$tweets) {
+        print $tweet->{user}->{screen_name} . " says " . encode_utf8($tweet->{text}) . "\n";
+    }
+}