diff options
author | Frederick Muriuki Muriithi | 2024-08-05 17:20:42 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-05 17:23:42 -0500 |
commit | 33a1274ddeee3ca27448d512c34ac0c5f66e7414 (patch) | |
tree | f80e7bd8c689ec86495c92491390807de828b80e /gn2/wqflask | |
parent | 720bedbaa239fe80604f3f64b50184cb43ba79f7 (diff) | |
download | genenetwork2-33a1274ddeee3ca27448d512c34ac0c5f66e7414.tar.gz |
Fix URL
Diffstat (limited to 'gn2/wqflask')
-rw-r--r-- | gn2/wqflask/oauth2/client.py | 2 |
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__) |