ikhwan aja
ikhwan aja

Reputation: 115

Requirement for Firebase Cloud Messaging

I have stored user data (including the FirebaseInstanceId token) on my server. And now I want to use Firebase Cloud Messaging. How can I do it without using Firebase Auth?

Upvotes: 0

Views: 137

Answers (1)

AL.
AL.

Reputation: 37798

FCM and Firebase Auth are services that can work on their own without the other.

Requirements wise, in order for you to send the messages, you just need the correct registration token (FirebaseInstanceId token). You can either use the Firebase Console to send a message or your own app server using the REST API.

You could also make use of Cloud Functions for Firebase since you are also using the Firebase Database.

Upvotes: 1

Related Questions