Skip to content
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

Firebase iOS notifications not working with new HTTP v1 API #723

Open
sstuart-vigil opened this issue May 14, 2024 · 2 comments
Open

Firebase iOS notifications not working with new HTTP v1 API #723

sstuart-vigil opened this issue May 14, 2024 · 2 comments

Comments

@sstuart-vigil
Copy link

I moved my app to use Firebase instead of APNS for iOS devices, and it was working with the legacy FCM API. After updating to the new HTTP v1 API notifications no longer go to iOS devices. Android devices work as expected.

When sending from the Django admin I get an 'All messages were sent.' success message, and when sending from the command line using send_message I get a success response as well.

I took the device registration ID for my iOS test device and sent a message using the firebase console and the notification worked. So the configuration is correct on that side, is there anything additionally that needs to be done in Django?

@pupubird
Copy link

Same here, works on android but not ios

@Klemenceo
Copy link

Klemenceo commented May 16, 2024

The way it gets wrapped in message is wrong now, one way to circumvent that is wrap this in a message directly as the send message special cases that type.
Something like this :
m = messaging.Message(notification=messaging.Notification(title="Title", body="body"))
should work both on iOS and Android.

note: If you need to send high volumes of message the HTTP v1 API is slow as there is no batching endpoint, and the firebase SDK doesn't use HTTP/2 yet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants