-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Improve Web push compatibility #32
Comments
Oh no :( That's new to me. Guess you mean section 8.1?
That's bad news because I guess it would mean that we have to support Message Encryption (very cumbersome) from the beginning, even if you use it with UnifiedPush and your own trusted push server … |
The migration to encrypted notifications can be done pretty smoothly for users and developers:
* It is possible to see if the message was encrypted if you want: onMessage of the MessagingReceiver now uses the PushMessage class. You can use ** The doc linked here will probably be properly release this week too. |
RFC8030 requires:
UnifiedPush specifications have been updated to clarify that the push server is a web push server. Therefore, some push servers can reject requests without TTL header, or that doesn't encrypt their body.
It is possible to hack around this 2nd requirement by including the header
content-encoding: aes128gcm
(with a cleartext body): it can be a temporary workaround to not be rejected until this is properly implementedThe text was updated successfully, but these errors were encountered: