私はこのフォーラムに参加したばかりで、Perl ライブラリの Net::Twitter:Stream に問題があります。このリンクNet::Twitter:Streamの例に従っています。
しかし、悪い応答コード (200 以外) を受け取ったときにその部分が欠落しており、アルゴリズムを停止する必要があります。では、この場合はどうすればよいのでしょうか。使いすぎてツイッターのブラックリスト入りするのが怖い…
私は以下のこのコードに基づいています:
use Net::Twitter::Stream;
Net::Twitter::Stream->new ( user => $username, pass => $password,
callback => \&got_tweet,
track => 'perl,tinychat,emacs',
follow => '27712481,14252288,972651' );
sub got_tweet {
my ( $tweet, $json ) = @_; # a hash containing the tweet
# and the original json
print "By: $tweet->{user}{screen_name}\n";
print "Message: $tweet->{text}\n";
}