user13153726
user13153726

Reputation:

Can I use FCM firebase without their firebase DB?

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

Answers (1)

Frank van Puffelen
Frank van Puffelen

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

Related Questions