Skip to content

Instantly share code, notes, and snippets.

@semifor
Created September 4, 2010 21:53
Show Gist options
  • Select an option

  • Save semifor/565524 to your computer and use it in GitHub Desktop.

Select an option

Save semifor/565524 to your computer and use it in GitHub Desktop.
#!/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