0

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?

KENdi
  • 7,670
  • 2
  • 15
  • 27
Raj Chaudhary
  • 978
  • 3
  • 10
  • 26

1 Answers1

2

There is no built-in delivery receipt. If you want such a thing, you can build it yourself though:

  1. Send only data messages, so that all messages are delivered to your application code.
  2. Send a delivery receipt from your code back to your server, e.g. writing it into a Firebase database.
Frank van Puffelen
  • 499,950
  • 69
  • 739
  • 734