Is there a way to know if a Firebase push notification has been successfully delivered to a user's mobile device? If this is not possible via Firebase out of the box, is there any workaround for this?
Asked
Active
Viewed 954 times
0
1 Answers
2
There is no built-in delivery receipt. If you want such a thing, you can build it yourself though:
- Send only data messages, so that all messages are delivered to your application code.
- Send a delivery receipt from your code back to your server, e.g. writing it into a Firebase database.

Frank van Puffelen
- 565,676
- 79
- 828
- 807