[Catalyst-commits] r13369 - in Catalyst-Authentication-Credential-OAuth/trunk: . lib/Catalyst/Authentication/Credential

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Mon Jun 28 00:18:17 GMT 2010


Author: t0m
Date: 2010-06-28 01:18:17 +0100 (Mon, 28 Jun 2010)
New Revision: 13369

Modified:
   Catalyst-Authentication-Credential-OAuth/trunk/Changes
   Catalyst-Authentication-Credential-OAuth/trunk/lib/Catalyst/Authentication/Credential/OAuth.pm
Log:
Version 0.03

Modified: Catalyst-Authentication-Credential-OAuth/trunk/Changes
===================================================================
--- Catalyst-Authentication-Credential-OAuth/trunk/Changes	2010-06-24 14:09:43 UTC (rev 13368)
+++ Catalyst-Authentication-Credential-OAuth/trunk/Changes	2010-06-28 00:18:17 UTC (rev 13369)
@@ -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

Modified: Catalyst-Authentication-Credential-OAuth/trunk/lib/Catalyst/Authentication/Credential/OAuth.pm
===================================================================
--- Catalyst-Authentication-Credential-OAuth/trunk/lib/Catalyst/Authentication/Credential/OAuth.pm	2010-06-24 14:09:43 UTC (rev 13368)
+++ Catalyst-Authentication-Credential-OAuth/trunk/lib/Catalyst/Authentication/Credential/OAuth.pm	2010-06-28 00:18:17 UTC (rev 13369)
@@ -10,7 +10,7 @@
 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 @@
 			token => $response->token,
 			token_secret => '',
 			request_url => $provider->{access_token_endpoint},
+			verifier => $c->req->params->{oauth_verifier},
 		);
 		$request->sign;
 




More information about the Catalyst-commits mailing list