[geeklog-hg] geeklog: Fixed Twitter OAuth login error (bug #0001497)

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Dec 22 05:12:08 EST 2012


changeset 8893:2f6a2bf694ce
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/2f6a2bf694ce
user: Tom <websitemaster at cogeco.net>
date: Mon Oct 22 12:23:31 2012 -0400
description:
Fixed Twitter OAuth login error (bug #0001497)

diffstat:

 system/classes/oauth/twitter.auth.class.php |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (18 lines):

diff -r 6bde3f6f591f -r 2f6a2bf694ce system/classes/oauth/twitter.auth.class.php
--- a/system/classes/oauth/twitter.auth.class.php	Wed Jun 27 09:40:18 2012 -0400
+++ b/system/classes/oauth/twitter.auth.class.php	Mon Oct 22 12:23:31 2012 -0400
@@ -40,10 +40,10 @@
 class twitterConsumer extends OAuthConsumerBaseClass {
     public $consumer_key = ''; // <-- Consumer key
     public $consumer_secret = '';  // <-- Consumer secret
-    public $url_requestToken = 'https://twitter.com/oauth/request_token';
-    public $url_authorize = 'https://twitter.com/oauth/authenticate';
-    public $url_accessToken = 'https://twitter.com/oauth/access_token';
-    public $url_userinfo = 'http://twitter.com/account/verify_credentials.xml';
+    public $url_requestToken = 'https://api.twitter.com/oauth/request_token';
+    public $url_authorize = 'https://api.twitter.com/oauth/authenticate';
+    public $url_accessToken = 'https://api.twitter.com/oauth/access_token';
+    public $url_userinfo = 'http://api.twitter.com/1/account/verify_credentials.xml';
 
     protected function _getCreateUserInfo($info) {
         $users = array(



More information about the geeklog-cvs mailing list