Reputation:
I have Laravel
project and I need to seed notifications from web to mobile (android,iOS) via API, a lot of recommendations goes to Firebase FCM (Firebase Cloud Messaging), but I have a question: can I use FCM of Firebase without using the DB of Firebase just unsing my own DB which is MYSQL
?
Upvotes: 1
Views: 257
Reputation: 599176
Yes, you can use Firebase Cloud Messaging without using any of the other Firebase products.
Just call the FCM REST API from your code, or use the Firebase Admin SDK, after reading the relevant data from your MySQL database.
Upvotes: 1