We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The package used for decrypting the jwt token atob only works with base64 encoded strings not with base64 URL safe encoded strings.
We have a JWT url safe b64 encoded and this gives issues when the _ and - characters appear.
Regards,
Tom Dierckx
The text was updated successfully, but these errors were encountered:
This is true: to decode the JWT you should use base64url!
That's because of the non-url-safeness of the / and + characters, allowed in the base64 encoding.
/
+
Sorry, something went wrong.
No branches or pull requests
The package used for decrypting the jwt token atob only works with base64 encoded strings not with base64 URL safe encoded strings.
We have a JWT url safe b64 encoded and this gives issues when the _ and - characters appear.
Regards,
Tom Dierckx
The text was updated successfully, but these errors were encountered: