Skip to content

Commit

Permalink
Merge pull request #718 from oracle/authlib-api-fix
Browse files Browse the repository at this point in the history
Fix for Authlib API change.
  • Loading branch information
toxophilist authored Sep 27, 2024
2 parents abd05d0 + b90fe24 commit 424fedd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okitweb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def login():
@okitWebDesigner.bp.route('/postlogin', methods=(['GET', 'POST']))
def postlogin():
token = idcs.authorize_access_token()
userinfo = idcs.parse_id_token(token)
userinfo = idcs.parse_id_token(token, None)
session['username'] = userinfo['user_displayname']
session['home_region'] = app.config['OCI_HOME_REGION']
session['tenant'] = app.config['OCI_TENANT']
Expand Down

0 comments on commit 424fedd

Please sign in to comment.