Skip to content

Commit

Permalink
feat: remove = in the Authorization Basic xxxx for client_secret_basic
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Feb 19, 2024
1 parent aefdedb commit ff2b4d9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,8 @@ class QRCodeScanCubit extends Cubit<QRCodeScanState> {
clientId = customOidc4vcProfile.clientId;
clientSecret = customOidc4vcProfile.clientSecret;
authorization =
base64UrlEncode(utf8.encode('$clientId:$clientSecret'));
base64UrlEncode(utf8.encode('$clientId:$clientSecret'))
.replaceAll('=', '');
case ClientAuthentication.clientId:
final didKeyType = customOidc4vcProfile.defaultDid;

Expand Down

0 comments on commit ff2b4d9

Please sign in to comment.