Skip Menu |

This queue is for tickets about the Net-Twitter-Search CPAN distribution.

Report information
The Basics
Id: 48886
Status: new
Priority: 0/
Queue: Net-Twitter-Search

People
Owner: Nobody in particular
Requestors: njh [...] bandsman.co.uk
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.11
Fixed in: (no value)



Subject: Provided example doesn't work
njh@packard:~$ perl foo Not an ARRAY reference at foo line 8. njh@packard:~$ cat foo #!/usr/bin/perl use Net::Twitter::Search; my $twitter = Net::Twitter::Search->new(); my $results = $twitter->search('Albi the racist dragon'); foreach my $tweet (@{ $results }) { my $speaker = $tweet->{from_user}; my $text = $tweet->{text}; my $time = $tweet->{created_at}; print "$time <$speaker> $text\n"; } njh@packard:~$