Hi,
I am using firbase sdk to implement web push notification.Here is my idea.
Whenver a client subscribe to notification, registration token and language preference will be sent to server side and subscribe to the topic (EN, DE etc) based on the language, using python firebase admin sdk.
But I have read from the firebase docuemtation that, too many subscription request to topic within short period of time will be rejected. (I assume that, in the real world, many customers from different parts of the world will be subscribed to the notification simultaneously)
How can I efficiently collect list registration tokens and subscribe to topic in the real world scenario.? ( should I store the each registration token in a databse at server side and then send the subscrbtion request to topic later? )
Any valuable inputs will be much appreciated.
Thanks and Regards
Subin