You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FCM notification have a limitation on Android. When the app is in background FCM reads the notification object and handles redirections on its own. This prevents us from deeplinking into a particular screen with params and add telemetry to delivery of message. We can fix this by sending only data object in payload and prevent notification object completely.
To ensure minimal impact this can be a config driven change.
Ex:
In conversation logic add parameter fcm_payload_objects=[notification, data]
From NL we shall configure it as fcm_payload_objects=[data] which would result in a null notification object.
The text was updated successfully, but these errors were encountered:
FCM notification have a limitation on Android. When the app is in background FCM reads the
notification
object and handles redirections on its own. This prevents us from deeplinking into a particular screen with params and add telemetry to delivery of message. We can fix this by sending onlydata
object in payload and preventnotification
object completely.To ensure minimal impact this can be a config driven change.
Ex:
In conversation logic add parameter
fcm_payload_objects=[notification, data]
From NL we shall configure it as
fcm_payload_objects=[data]
which would result in a nullnotification
object.The text was updated successfully, but these errors were encountered: