Version 0.03 v0.03
Tomas Doran [Mon, 28 Jun 2010 00:18:17 +0000 (00:18 +0000)]
Changes
lib/Catalyst/Authentication/Credential/OAuth.pm

diff --git a/Changes b/Changes
index a249008..7754411 100644 (file)
--- 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
index e0e9375..7d4a1ae 100644 (file)
@@ -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;