package WWW::Twittervision;
use 5.008000;
use strict;
use warnings;
use Carp;
use LWP;
use JSON;
use URI::Escape;
use vars qw($VERSION $DEBUG $TVURL);
our $VERSION = '0.02';
$TVURL = 'http://api.tw
eds a screen name');
my $req_url = $self->{url} . '/user/current_status/' . $screen_name . '.json';
my $req = HTTP::Request->new(GET => $req_url);
my $ua = LWP::UserAgent->new;
m
carp('Unable to access ' . $req_url);
return undef;
}
my $json = new JSON;
my $data = $json->decode($res->content);
return $data;
}
sub update_status {
my $self =