]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Update twitter base urls to use api 1.1 and HTTPS.
authorBen Darnell <ben@bendarnell.com>
Sat, 1 Jun 2013 01:49:08 +0000 (21:49 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 2 Jun 2013 20:06:29 +0000 (16:06 -0400)
This is in preparation for the shutdown of version 1 of the API on
June 11.

Closes #809.

tornado/auth.py

index c8686187f3ec0beb1c4947294d737dff7462c290..ab2137e393f0e98e014ba97ab87cae00015fd6da 100644 (file)
@@ -585,12 +585,12 @@ class TwitterMixin(OAuthMixin):
     and all of the custom Twitter user attributes described at
     https://dev.twitter.com/docs/api/1.1/get/users/show
     """
-    _OAUTH_REQUEST_TOKEN_URL = "http://api.twitter.com/oauth/request_token"
-    _OAUTH_ACCESS_TOKEN_URL = "http://api.twitter.com/oauth/access_token"
-    _OAUTH_AUTHORIZE_URL = "http://api.twitter.com/oauth/authorize"
-    _OAUTH_AUTHENTICATE_URL = "http://api.twitter.com/oauth/authenticate"
+    _OAUTH_REQUEST_TOKEN_URL = "https://api.twitter.com/oauth/request_token"
+    _OAUTH_ACCESS_TOKEN_URL = "https://api.twitter.com/oauth/access_token"
+    _OAUTH_AUTHORIZE_URL = "https://api.twitter.com/oauth/authorize"
+    _OAUTH_AUTHENTICATE_URL = "https://api.twitter.com/oauth/authenticate"
     _OAUTH_NO_CALLBACKS = False
-    _TWITTER_BASE_URL = "http://api.twitter.com/1"
+    _TWITTER_BASE_URL = "https://api.twitter.com/1.1"
 
     def authenticate_redirect(self, callback_uri=None):
         """Just like `~OAuthMixin.authorize_redirect`, but