You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FormatException (FormatException: Missing padding character (at character 280)
...Tmk0c0EiLCJhbmRyb2lkUGFja2FnZU5hbWUiOiJjb20uY29yYmFkby5wYXNza2V5cy5wdWIifQ=
^
)
It turns out that the raw is not correctly base64 padded, replace this line: final raw = '${response.clientDataJSON}=';
with final raw = padBase64(response.clientDataJSON);
FormatException (FormatException: Missing padding character (at character 280)
...Tmk0c0EiLCJhbmRyb2lkUGFja2FnZU5hbWUiOiJjb20uY29yYmFkby5wYXNza2V5cy5wdWIifQ=
^
)
It turns out that the raw is not correctly base64 padded, replace this line:
final raw = '${response.clientDataJSON}=';
with
final raw = padBase64(response.clientDataJSON);
and add function:
should fix the issue.
The text was updated successfully, but these errors were encountered: