From f519a9d5c322055d41a36644bf9f0518be8a4182 Mon Sep 17 00:00:00 2001 From: Luka Radenovic Date: Thu, 20 Jan 2022 08:44:19 +0100 Subject: [PATCH] Update get_token function --- helpers/hydra_oauth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/helpers/hydra_oauth.py b/helpers/hydra_oauth.py index f0a5526..eaedc84 100644 --- a/helpers/hydra_oauth.py +++ b/helpers/hydra_oauth.py @@ -29,7 +29,6 @@ class HydraOauth: hydra = OAuth2Session( client_id=HYDRA_CLIENT_ID, state=state, - token_endpoint_auth_method="client_secret_basic", ) token = hydra.fetch_token( TOKEN_URL, code=code, state=state, client_secret=HYDRA_CLIENT_SECRET