Skip to content

Commit

Permalink
Fix access_token to id_token in signing logic
Browse files Browse the repository at this point in the history
  • Loading branch information
mayaCostantini committed Dec 5, 2023
1 parent 3a46e8b commit c91fbc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ def identity_token(self, client_id, client_secret):
if token_error is not None:
raise IdentityError(f"Error response from token endpoint: {resp_error}")

return IdentityToken(token_json["access_token"])
return IdentityToken(token_json["id_token"])

0 comments on commit c91fbc4

Please sign in to comment.