I am working on a requirement in which I need to send push notification to each and every user every morning. But each user will get customized notification message according to their progress.
I have written a cloud function that sends same message to every user as it sends to topic. I have below questions regarding firebase and notifications.
Does firebase stores the FCM token automatically? Right now I am storing the FCM token manually into Firestore once user registers.
If firebase stores the FCM token automatically then how can I retrieve them?
As I am sending customized message to each user I am not able to use topics to send customized notification to each user. What is the other way to send notification to single user at a time?
Thank you