Hamed Jamshidi
Hamed Jamshidi

Reputation: 29

Firebase cloud messaging not received by some devices

I faced a problem took my time for 5 days. When I send push notifications with FCM, web service response back success as below

{"multicast_id":7792208922657857316,"success":1,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1501588248469528%fdb01da9f9fd7ecd"}]}[]

But it not received in some devices. just for inform you it can received by some other devices. I searched several sites but my problem is remained yet.

Upvotes: 1

Views: 910

Answers (1)

Umang
Umang

Reputation: 1070

The multicast_id is just a confirmation that your request has been accepted by the FCM server. Possible issues why push was not received on some devices:

  1. Device offline in the given ttl
  2. App was force stopped by the user/battery saving app/launcher customisations like MIUI, OPPO color OS etc
  3. User un-installed the app. Google at times is not able to able to mark the user uninstalled immediately.

Upvotes: 2

Related Questions