the run: send https://fcm.googleapis.com/fcm/send
{
"to" : "xxxxxxxxxxxxxxxxxxxxxxxxx",
"priority" : "normal",
"time_to_live" : 3,
"notification" : {
"body" : " test mensaje",
"color":"#FF2301",
"icon" : "ic_logo_noti_mini",
"sound":"notificacion.mp3",
"title" : "Notification ",
"click_action" : "OPEN_ACTIVITY_1"
},
"data" : {
"url_fiori" : "http://www.goole.com.ar"
}
}
If the APP is open the message arrives in the correct format. If the APP is cerra the message arrives in the wrong format, it does not pass through the logic of the class that extends FirebaseMessagingService.
I'd have to do to get the message FCM background simpre open format by more than the app is closed.
What could be the problem?
Regards,