Lc Wei
Lc Wei

Reputation: 69

Get key and value from firebase push notification

I have an react-native App (android) to receive push notification from firebase console.

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

Answers (1)

Mohammed Alawneh
Mohammed Alawneh

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

Related Questions