1 post tagged “twitter”
I released Net::Twitter::Diff at CPAN.
What you can do with this module are...
- Use this module when you want to know all your followers who you are not following.
- Use this module when you want to compare following with your twitter friend.
- Use xfollowing and xfollowers instead of Net::Twitter->following(), Net::Twitter->followers() when you have more thatn 100 twitter's. following and follower methods have 100 limitation because of Twitter API. xfolloing() and xfollowers() is support more than 100 but it is unofficial use , the way I implement is not on the Twitter API Document. You can find how if you ask to google :-)
use Net::Twitter::Diff;
use Data::Dumper;
my $diff = Net::Twitter::Diff->new( username => '******' , password => '******');
print Dumper $diff->diff();print Dumper $diff->comp_following( 'somebody_twitter_name' );
print Dumper $diff->xfollowing();
print Dumper $diff->xfollowers();
- You must know one thing : you have limitation for 70 times per hour for Twitter API request. so be aware.