FireBase Google

5

Currently I use Google's Firebase database, (and other components like, auth, FCM, etc.) for my project. I would like to know if there is how to create server side routines. For example: after a period of days the routine searches for users according to a business rule and sends notifications, all done through the routine. Is there something like this available from Firebase?

    
asked by anonymous 15.09.2016 / 15:41

2 answers

2

If the doubt still persists for someone, Google makes it available to you by using Cloud Functions (Firebase).

Some links that explain how it works:

link

link

    
08.09.2017 / 21:43
0

You can create your server-side routines using the Firebase Database REST API and send your notifications via curl as well. Just create according to your business rule

Firebase Database REST API

    
15.09.2016 / 21:34