Skip to content

Commit

Permalink
Fix: Client ID in OID4VP authorisation request
Browse files Browse the repository at this point in the history
Signed-off-by: George Padayatti <[email protected]>
  • Loading branch information
georgepadayatti committed May 14, 2024
1 parent b097d37 commit 2098ff7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def execute(
exp = int(time.time()) + 3600
response_type = "vp_token"
response_mode = "direct_post"
client_id = domain
client_id = f"{domain}/organisation/{organisation_id}/service"
redirect_uri = f"{domain}/organisation/{organisation_id}/service/direct_post"
scope = "openid"
nonce = str(uuid.uuid4())
Expand Down

0 comments on commit 2098ff7

Please sign in to comment.