Skip to content

Commit

Permalink
Fix: Client ID in Authorisation Response
Browse files Browse the repository at this point in the history
Signed-off-by: George J Padayatti <[email protected]>
  • Loading branch information
georgepadayatti committed May 1, 2024
1 parent 446b5bd commit c46fce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eudi_wallet/ebsi/services/application/v2_organisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ async def v2_prepare_redirect_url_with_id_token_request(
exp = int(time.time()) + 3600
response_type = "id_token"
response_mode = "direct_post"
client_id = self.auth_domain
client_id = f"{self.auth_domain}/organisation/{organisation_id}"
redirect_uri = (
f"{self.auth_domain}/organisation/{organisation_id}/service/direct_post"
)
Expand Down

0 comments on commit c46fce6

Please sign in to comment.