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
Currently, global IDs are generated using the full Base64 charset. This includes the characters + and /, which are not safe for displaying in URLs.
The implementation the base64 utilities found here should use urlsafe_b64encode and urlsafe_b64decode respectively.
The text was updated successfully, but these errors were encountered:
Encode IDs using URL- and filesystem-safe alphabet (#35)
0baceab
No branches or pull requests
Currently, global IDs are generated using the full Base64 charset. This includes the characters + and /, which are not safe for displaying in URLs.
The implementation the base64 utilities found here should use urlsafe_b64encode and urlsafe_b64decode respectively.
The text was updated successfully, but these errors were encountered: