This question already has answers here:
Topics on Firebase Cloud Messaging?
(2 answers)
Closed 4 years ago.
The FCM Topic creation takes way too long to appear in Console (14h to appear on Console). Does it mean that sending messages to that topic will also take the same time? I mean a client (Android app) subscribing to that topic has to wait for long to receive data (notification)?
FirebaseMessaging.getInstance().subscribeToTopic("MyTopic");
I have read this issue but unable to carve out my answer.
Thanks
Thanks to this SO Thread.
As soon as there is a single subscriber for the topic, it can be used immediately. But if you're going to use the Firebase console, it will take time for it to be visible in the options.
Related
This question already has answers here:
Can I use Firebase for sending SMS to users without using Twilio?
(4 answers)
Is it possible to send a text message from firebase to a phone number?
(1 answer)
SMS API with Firebase (FCM)
(1 answer)
Closed 12 months ago.
Can I use Firebase to deliver SMS messages without relying on any third-party libraries? Is there an API for sending SMS messages in Firebase? cause I looked over the Firebase website and the net but couldn't find those details only notification messages are popping out. If not, is there a free third-party API that can be used? Suggestions and comments are always appreciated.
This question already has answers here:
How to send one to one message using Firebase Messaging
(5 answers)
Closed 1 year ago.
Please give the stepwise procedure to send the action notification from one user to other and after getting the notification , user have to give some response on the basis of that it may go to different activities.
Please suggest procedure/tutorial.
There are hundreds of tutorials online for various ways to do this, and they all depend on your framework, language, and available API
A good start would be Youtube
https://www.youtube.com/watch?v=wDpxBTjvPys
This question already has answers here:
How to send one to one message using Firebase Messaging
(5 answers)
Closed 2 years ago.
Hi there fellow programmers. I'm developing a mobile app using firebase and I want a push notification to be sent to all users when a particular value in realtime database.
After some searching I figured I probably have to use cloud functions and database triggers. So since I have no knowledge of node.js I need someone to help me through this (like any half-ready code or anything like that)
Thanks in advance!
Could you try the following sample?
https://github.com/firebase/functions-samples/tree/master/fcm-notifications
This question already has answers here:
Firebase notification records/log API
(2 answers)
Closed 4 years ago.
Is there any way how to check FCM message status without implementing XMPP server (since I want to look for iOS notifications as well)?
There was a way how to do it in Google Play Console, but I don't see any specific messages where could I check according to their multicast_id or message_id.
Source: https://support.google.com/googleplay/android-developer/answer/2663268?hl=en
I can see there only basic statistics and only of the messages that were sent from the Firebase console, not through API (which I need)
According to https://groups.google.com/forum/#!topic/firebase-talk/ArolxFrXclk, there should be some new service for this, but I can't find it anywhere.
Any news on this one?
It's impossible to find issues without any feedback to help our users to receive all notifications they chose to receive. Now I can only see that all messages were sent successfully from our backend.
Unfortunately, there still isn't any announced/released alternative for the FCM Diagnostics tool.
If you in need of more information, the suggested approach as of the moment is reach out to Firebase Support with the details of your concern.
For any updates regarding it, we should expect to see an update in this Google Documentation (see Changes to FCM Data section).
This question already has answers here:
Firebase notification records/log API
(2 answers)
Closed 4 years ago.
Is it possible to track push notification from firebase console which is send from server-side or Rest client.
See duplicate post.
No. Currently, only messages sent through the Firebase Notifications Console are visible in the console. Messages sent through the API could be tracked in the Diagnostics Tool, keeping in mind that this doesn't include messages sent to topics.