Change to make sure tweepy use SSL
authorMickaël Fosso <jazzkeats@gmail.com>
Mon, 28 Jul 2014 14:37:27 +0000 (16:37 +0200)
committerMickaël Fosso <jazzkeats@gmail.com>
Mon, 28 Jul 2014 14:37:27 +0000 (16:37 +0200)
I had some problems using Tweepy and I realized it was because it didn't always use SSL. So I propose to add a line to make sure the connexion we use is secure.

examples/oauth.py

index d3b4b106615587c96f26dd021931e3e1803acf9d..1399f4a2230894f49e9cc558c713524a0afb7730 100644 (file)
@@ -17,6 +17,7 @@ access_token=""
 access_token_secret=""
 
 auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
+auth.secure = True
 auth.set_access_token(access_token, access_token_secret)
 
 api = tweepy.API(auth)