X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/ea5231b2fe0f40d87c9c7991b949c39c7cddd7e3..06087b07e3cc30345d41fb17a68982fd2bb4e6d8:/twitter/oauth_dance.py diff --git a/twitter/oauth_dance.py b/twitter/oauth_dance.py index d6e93e3..d3f0ea8 100644 --- a/twitter/oauth_dance.py +++ b/twitter/oauth_dance.py @@ -1,4 +1,3 @@ - from __future__ import print_function import webbrowser @@ -21,13 +20,13 @@ def oauth_dance(app_name, consumer_key, consumer_secret, token_filename=None): Provide the name of your app in `app_name`, your consumer_key, and consumer_secret. This function will open a web browser to let the - user Allow your app to access their Twitter account. PIN + user allow your app to access their Twitter account. PIN authentication is used. If a token_filename is given, the oauth tokens will be written to the file. """ - print(("Hi there! We're gonna get you all set up to use %s." % app_name)) + print("Hi there! We're gonna get you all set up to use %s." % app_name) twitter = Twitter( auth=OAuth('', '', consumer_key, consumer_secret), format='', api_version=None) @@ -38,7 +37,7 @@ In the web browser window that opens please choose to Allow access. Copy the PIN number that appears on the next page and paste or type it here: """) - oauth_url = ('http://api.twitter.com/oauth/authorize?oauth_token=' + + oauth_url = ('https://api.twitter.com/oauth/authorize?oauth_token=' + oauth_token) print("Opening: %s\n" % oauth_url)