From f655275a58201854a45cdd378558ab7fbfc70940 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 6 Oct 2012 11:53:51 +0200 Subject: [PATCH] Twitter wants https now --- docs/index.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 06605b0..e1da1e2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -65,10 +65,10 @@ relative URLs used in the remote app. For Twitter the setup would look like this:: twitter = oauth.remote_app('twitter', - base_url='http://api.twitter.com/1/', - request_token_url='http://api.twitter.com/oauth/request_token', - access_token_url='http://api.twitter.com/oauth/access_token', - authorize_url='http://api.twitter.com/oauth/authenticate', + base_url='https://api.twitter.com/1/', + request_token_url='https://api.twitter.com/oauth/request_token', + access_token_url='https://api.twitter.com/oauth/access_token', + authorize_url='https://api.twitter.com/oauth/authenticate', consumer_key='', consumer_secret='' )