From: Tomas Doran Date: Mon, 28 Jun 2010 00:18:17 +0000 (+0000) Subject: Version 0.03 X-Git-Tag: v0.03^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Credential-OAuth.git;a=commitdiff_plain;h=54aac34559458cf0c3b8308a953d9131775d00d8 Version 0.03 --- diff --git a/Changes b/Changes index a249008..7754411 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Catalyst::Authentication::Credential::OAuth +0.03 Mon Jun 28 01:16:00 2010 + Support new "verifier" requirement for "access token" + to work with the Twitter API. + 0.02 Fri Sep 25 10:30:35 2009 Fix dependencies Autogenerate README diff --git a/lib/Catalyst/Authentication/Credential/OAuth.pm b/lib/Catalyst/Authentication/Credential/OAuth.pm index e0e9375..7d4a1ae 100644 --- a/lib/Catalyst/Authentication/Credential/OAuth.pm +++ b/lib/Catalyst/Authentication/Credential/OAuth.pm @@ -10,7 +10,7 @@ use String::Random qw/ random_string /; use Catalyst::Exception (); use namespace::autoclean; -our $VERSION = '0.02'; +our $VERSION = '0.03'; has debug => ( is => 'ro', isa => Bool ); has providers => ( is => 'ro', isa => HashRef, required => 1 ); @@ -72,6 +72,7 @@ sub authenticate { token => $response->token, token_secret => '', request_url => $provider->{access_token_endpoint}, + verifier => $c->req->params->{oauth_verifier}, ); $request->sign;