generate url with dedicated function

multi-deployment
b3yond 2018-04-14 16:36:57 +02:00
parent 261496c097
commit 034513718f
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ def login_twitter(user):
try:
consumer_key = config["twitter"]["consumer_key"]
consumer_secret = config["twitter"]["consumer_secret"]
callback_url = request.get_header('host') + "/login/twitter/callback"
callback_url = url("/login/twitter/callback")
auth = tweepy.OAuthHandler(consumer_key, consumer_secret, callback_url)
try:
redirect_url = auth.get_authorization_url()