Reputation: 69
I have an react-native App (android) to receive push notification from firebase console.
Is there any function in react-native-firebase can get key and value (custom data) from push notification message?
Upvotes: 0
Views: 1082
Reputation: 306
Inside your notification listener try to extract your custom keys/values from the data
object
const { data } = notificationOpen.notification;
alert(data.myKey);
Upvotes: 1