Update get_token function

This commit is contained in:
Luka Radenovic 2022-01-20 07:49:11 +01:00
parent 34796a7d82
commit f0d83c6886

View file

@ -26,12 +26,13 @@ class HydraOauth:
@staticmethod
def get_token(state, code):
try:
hydra = OAuth2Session(HYDRA_CLIENT_ID, state=state)
token = hydra.fetch_token(
TOKEN_URL,
code=code,
hydra = OAuth2Session(
HYDRA_CLIENT_ID,
state=state,
client_secret=HYDRA_CLIENT_SECRET,
token_endpoint_auth_method="client_secret_basic",
)
token = hydra.fetch_token(
TOKEN_URL, code=code, state=state, client_secret=HYDRA_CLIENT_SECRET
)
session["hydra_token"] = token