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
{{ message }}
This repository has been archived by the owner on Nov 14, 2018. It is now read-only.
While testing the dev-dashboard, I used a Base64 (not URL friendly) public key to create a new application. When attempting to delete it, I got MessagesAPIError. It turned out the vapid_key was passed literally without encoding the forward slash.
The fix is to use quote(instance.vapid_key, safe='') to force all special characters to get URL encoded. #237
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
While testing the dev-dashboard, I used a Base64 (not URL friendly) public key to create a new application. When attempting to delete it, I got MessagesAPIError. It turned out the vapid_key was passed literally without encoding the forward slash.
The fix is to use
quote(instance.vapid_key, safe='')
to force all special characters to get URL encoded. #237The text was updated successfully, but these errors were encountered: