Reputation: 115
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
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