in reply to Perl / New Twitter API
use warnings; use strict; use Net::Twitter::Lite::WithAPIv1_1; use Scalar::Util 'blessed'; use Data::Dumper; my $nt = Net::Twitter::Lite::WithAPIv1_1->new(); my $terms = 'nyc'; # Just a test term my $r = $nt->search($terms); print Dumper($r); exit; __END__ 400: Bad Request
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl / New Twitter API
by DanielSpaniel (Scribe) on Jul 02, 2013 at 18:18 UTC | |
by Preceptor (Deacon) on Jul 02, 2013 at 18:41 UTC |