Created
September 4, 2010 21:53
-
-
Save semifor/565524 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use warnings; | |
| use strict; | |
| use Net::Twitter::Lite; | |
| use Data::Dumper; | |
| my $nt = Net::Twitter::Lite->new( | |
| consumer_key => 'YOUR KEY', | |
| consumer_secret => 'YOUR KEY SECRET', | |
| access_token => 'YOUR TOKEN', | |
| access_secret => 'YOUR TOKEN SECRET', | |
| ); | |
| my $status = $nt->verify_credentials; | |
| print Dumper $status; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment