Android Question Push message delivered

JDS

Active Member
Licensed User
Longtime User
Is there a way to verify if an pushmessage really has been received by an device?
Our FCM solution works and gets "ok" returned from the google service. But that doesn't mean it's delivered to the device itself.

Is there an solution to verify this (on the server-side)?
 

JDS

Active Member
Licensed User
Longtime User
We send the message to a specific device. So I can't install the application on a different device (and expect to reveice the message).
 
Upvote 0

Alex_197

Well-Known Member
Licensed User
Longtime User
Is there a way to verify if an pushmessage really has been received by an device?
Our FCM solution works and gets "ok" returned from the google service. But that doesn't mean it's delivered to the device itself.

Is there an solution to verify this (on the server-side)?
what you can do - in the fm event MessageArrived you can add sending an email to you as a confirmation.
 
Upvote 0

JDS

Active Member
Licensed User
Longtime User
what you can do - in the fm event MessageArrived you can add sending an email to you as a confirmation.
That is just the problem. If the message never arrives, there will be no e-mail.
If the device is shut down and then at any moment restarts, sometimes the push messages arrive. And sometimes the dont.

That's why we wondered if there is a possibilty in API to check if the pushmessage has been delivered the the device.
 
Upvote 0

GMan

Well-Known Member
Licensed User
Longtime User
Couldnt you make your app "listening" if a message arrives and then send a Status back to the server ?
 
Last edited:
Upvote 0
Top