#!/usr/bin/perl use strict; use Net::Twitter::Lite::WithAPIv1_1; use Scalar::Util 'blessed'; use Data::Dumper; my $nt=''; my $r=''; eval{ $nt = Net::Twitter::Lite::WithAPIv1_1->new; my $terms='nyc'; # Just a test term $r = $nt->search($terms); }; print Dumper($r); exit;