Subject: | apiurl parameter to new() required |
Date: | Mon, 26 Aug 2013 18:10:33 +0100 |
To: | bug-Net-Twitter-Lite [...] rt.cpan.org |
From: | David McKelvie <dmck [...] interactive.co.uk> |
26 August 2013
Using Net::Twitter::Lite::WithAPIv1_1; # version 0.12004
I was getting '410 Gone' responses from Twitter on an app which had worked with
Twitter v1 API.
I found that my code could be made to work if I added
apiurl => 'http://api.twitter.com/1.1',
to
my $nt = Net::Twitter::Lite::WithAPIv1_1->new(
consumer_key => $consumer_key,
consumer_secret => $consumer_secret,
access_token => $token,
access_token_secret => $token_secret,
apiurl => 'http://api.twitter.com/1.1',
);
Should this now be the default value for the apiurl parameter?
David McKelvie