Skip to content

Commit

Permalink
fix: the client_id used in the auth request was not taken into accoun…
Browse files Browse the repository at this point in the history
…t when requesting access token
  • Loading branch information
nklomp committed Feb 3, 2024
1 parent 6c96089 commit 2bc039c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/lib/OpenID4VCIClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export class OpenID4VCIClient {
...(!this._pkce.disabled && { codeVerifier: this._pkce.codeVerifier }),
code,
redirectUri,
asOpts: { clientId },
asOpts: { clientId: this.clientId },
});

if (response.errorBody) {
Expand Down

0 comments on commit 2bc039c

Please sign in to comment.