From 61a24dd134bb6c69ccec713a77f7d855e0045cc0 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 5 Aug 2018 17:02:33 +0300 Subject: Fix: redirect url --- ickweb/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ickweb/app.py b/ickweb/app.py index 1f3f09c..25d9ed1 100644 --- a/ickweb/app.py +++ b/ickweb/app.py @@ -65,7 +65,7 @@ def create_app(our_url, controller, client_secret): 'scope': ' '.join(scopes), 'client_id': client_id, 'state': 'FIXME', - 'redirect_uri': '{}/web/callback'.format(our_url), + 'redirect_uri': '{}/callback'.format(our_url), } url = '{}/auth?{}'.format(controller, urllib.parse.urlencode(params)) headers = { -- cgit v1.2.1