Create daily push notifications using Firebase Cloud Messaging

In the Firebase console, we can set a specific time and date when our notification will be clicked. But is there a way we can set daily? For example, will it send every Monday, Wednesday and Friday, or every day?

+4
source share
1 answer

Push campaigns with Firebase notifications can be sent now or later (on a schedule), but you cannot configure a recurring template. This is a very young product that Google just launched last week.

Perhaps you could switch to Firebase Cloud Messaging , use your HTTP API, and then build a cron script to automatically run your notifications these days.

Or switch to a more mature product such as Parse Server, Batch.com, or something else, as they usually provide daily / weekly / monthly recurring push notifications.

+5
source

All Articles