Skip to content

Commit 7045339

Browse files
author
Rebecka Gulliksson
committed
Fix missing 'aud' in ID Token.
1 parent 465f568 commit 7045339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/satosa/frontends/openid_connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def handle_authn_response(self, context, internal_resp):
9393
# create ID Token
9494
base_claims = {
9595
"iss": self.base_url,
96-
"client_id": auth_req["client_id"],
96+
"aud": auth_req["client_id"],
9797
"sub": internal_resp.user_id,
9898
"nonce": auth_req["nonce"],
9999
"auth_time": epoch_timestamp

0 commit comments

Comments
 (0)