aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/oauth2
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-08-05 17:20:42 -0500
committerAlexander_Kabui2024-08-28 15:02:46 +0300
commit1a4f0b1195cc7351589460487fc867935ba22aac (patch)
treee21938459ad69450f5bab52cf92a89e2e1416bb7 /gn2/wqflask/oauth2
parentc2c8d8298e3f10492cc26f76fe9d8e3053bcd4ef (diff)
downloadgenenetwork2-1a4f0b1195cc7351589460487fc867935ba22aac.tar.gz
Fix URL
Diffstat (limited to 'gn2/wqflask/oauth2')
-rw-r--r--gn2/wqflask/oauth2/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/oauth2/client.py b/gn2/wqflask/oauth2/client.py
index 89d8a57e..a7d20f6b 100644
--- a/gn2/wqflask/oauth2/client.py
+++ b/gn2/wqflask/oauth2/client.py
@@ -153,7 +153,7 @@ def oauth2_client():
oauth2_clientid(),
oauth2_clientsecret(),
scope=SCOPE,
- token_endpoint=urljoin(authserver_uri(), "/auth/token"),
+ token_endpoint=urljoin(authserver_uri(), "auth/token"),
token_endpoint_auth_method="client_secret_post",
token=token,
update_token=__update_token__)