X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAuthentication%2FCredential%2FOAuth.pm;fp=lib%2FCatalyst%2FAuthentication%2FCredential%2FOAuth.pm;h=7d4a1aed4f0c638eb8720df8785a98bade263e20;hb=54aac34559458cf0c3b8308a953d9131775d00d8;hp=e0e9375424c1feadc9a90d15bf8868bde7f26ff3;hpb=14bce469c9a13406b879f4fd14b0b93b39f004d1;p=catagits%2FCatalyst-Authentication-Credential-OAuth.git 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;