Skip to content

Commit

Permalink
feat: Add client_id attribute in the token endpoint request #1965
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 2, 2023
1 parent 2112fc9 commit 379ff11
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/oidc4vc/lib/src/oidc4vc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ class OIDC4VC {
tokenData = <String, dynamic>{
'pre-authorized_code': preAuthorizedCode,
'grant_type': 'urn:ietf:params:oauth:grant-type:pre-authorized_code',
'client_id': did,
};
} else if (code != null && codeVerifier != null && did != null) {
tokenData = <String, dynamic>{
Expand Down

0 comments on commit 379ff11

Please sign in to comment.