Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
ivukotic committed Oct 30, 2024
1 parent 0f078ed commit 1773e47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion portal/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ def login():
else:
code = request.args.get("code")
tokens = client.oauth2_exchange_code_for_tokens(code)
logger.info("tokens: " + tokens)
logger.info("tokens: ")
logger.info(tokens)
logger.info("by_server: ")
logger.info(tokens.by_resource_server)
id_token = tokens.decode_id_token(client)
session.update(
Expand Down

0 comments on commit 1773e47

Please sign in to comment.