How To Delete Firebase Cloud Messaging Token When User Log-out Of The React Native Application?
I use React Native FCM for messaging, and when the user logs out the application I want to delete the FCM token so that the user doesn't get Notified again. Below is my code for lo
Solution 1:
Simply add below given code in your logout function.
firebase.messaging().deleteToken()
Post a Comment for "How To Delete Firebase Cloud Messaging Token When User Log-out Of The React Native Application?"