Firebase Push Notifications Update Db

Firebase push notifications update DB

As per my experience with Firebase push:

Problem: When sending push notification through "Firebase console", notification is only received when application is in foreground. If the application is killed or in background, the notification is shown only in Version >= lollipop with incorrect notification icon and/or opening the default launcher activity in the app even if you have defined different Activity in PendingIntent.

As per Firebase docs, a push message is divided into 2 pars, they call them: Docs Link here

  1. notification
  2. data payload

Sample Image

Solution:

There are two ways to send a "Push" message.

1. Firebase Console

Console

2. Messaging API - Image showing a request using Advanced REST Client

Curl Request

Push message is received in onMessageReceived(...) method. Firebase onMessageReceived(...) method will not get called if the app is in background or killed only when the message is sent through Firebase Console.

If you send the message via API, it works fine. Message is delivered in onMessageReceived(...) method whether app is in background, foreground or killed. (Caution: This is working fine in >=Lollipop - Behaviour for Android 4.4 or below is still unpredictable.

Update:

You can send a push message from API (firebase call it downstream msg) like this: https://firebase.google.com/docs/cloud-messaging/downstream

Sending downstream messages from the server

To address or "target" a downstream message, the app server sets to with the receiving client app's registration token. You can send notification messages with predefined fields, or custom data messages; see Notifications and data in the message payload for details on payload support. Examples in this page show how to send data messages in HTTP and XMPP protocols.

HTTP POST Request

https://fcm.googleapis.com/fcm/send
Content-Type:application/json
Authorization:key=AIzaSyZ-1u...0GBYzPu7Udno5aA

{ "data": {
"score": "5x1",
"time": "15:10"
},
"to" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1..."
}

How to update app database with push notification with length 4kb

The best practice in such cases is to avoid sending the whole payload through the push message.

Instead, you should send only the data needed to identify the changed data and make the app request the updates directly from the server.



Related Topics



Leave a reply



Submit