semifor / net-twitter-lite

A lighter weight (non-Moose) Perl interface to the Twitter API
Other
26 stars 11 forks source link

POD Bug - $nt->request_access_token called without verifier #3

Closed deepakg closed 13 years ago

deepakg commented 13 years ago

There seems to be a minor issue with the documentation:

my($access_token, $access_token_secret, $user_id, $screen_name) =
          $nt->request_access_token;

Should be:

my($access_token, $access_token_secret, $user_id, $screen_name) =
          $nt->request_access_token(verifier => $verifier);

where $verifier is $c->req->param->{oauth_verifier}

This is documented correctly in Net::Twitter but seems to have been missed out in Net::Twitter::Lite

semifor commented 13 years ago

My apologies for the long delay responding. The doc bug you pointed out is fixed in the latest commit and will be included in the next CPAN release. Thank you!

deepakg commented 13 years ago

Thanks!