I'm creating an app with the phonegap and using the cordova-plugin-firebase to send notifications to the android, until then, I'm getting the notification, but when I "open" the notification I can not show the contents of it. message)
window.FirebasePlugin.onNotificationOpen(function(notification) {
alert(JSON.stringify(notification));
}, function(error) {
console.error(error);
});
Everything that appears in the alert is google.sent_time google.ttl tap from google.message_id google.priority collapse_key according to the image. Does anyone know how I can get the information and display it to the user?