evollu / react-native-fcm

react native module for firebase cloud messaging and local notification
MIT License
1.73k stars 681 forks source link

How can I get notification data once click on notification #1064

Open blabz-rahulmandalkar opened 5 years ago

blabz-rahulmandalkar commented 5 years ago

Notifications are coming when app is in inactive and background state but once i clicked on particular notification I want data of notification to save in cache

MaxiSantos commented 5 years ago

You should use

FCM.getInitialNotification().then(notif => {
    console.log(notif)
  });
}

but we aware that there is an issue opened with that. I'm also facing that issue now. https://github.com/evollu/react-native-fcm/issues/1066

fukemy commented 1 year ago

@MaxiSantos not working to me, did u found any new solution?