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,576
  • 2
  • 16
  • 31
Raj Chaudhary
  • 1,444
  • 3
  • 16
  • 31

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
  • 565,676
  • 79
  • 828
  • 807