http://qs1969.pair.com?node_id=782068


in reply to Re^5: How do I use curl with perl and Twitter
in thread How do I use curl with perl and Twitter

Net::Twitter is installed. I am no longer getting errors, but this piece of code is not producing any output (and the foreach loop is straight out of http://cpansearch.perl.org/src/CTHOM/Net-Twitter-2.06/README
my $nt = Net::Twitter->new( traits => [qw/API::REST/], username => $usename, password => $pwd ); my $results = $nt->show_user($twitterID); foreach my $user (@{ $results }) { my $id = $user->{id}; my $name = $user->{name}; print STDOUT $id." ".$name."<br>"; }