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.
Related
This question already has an answer here:
firebase phone auth sms contains extra characters not present in template
(1 answer)
Closed 7 months ago.
when we received otp from firebase received some code also but in ios only received opt not code why?
below is some image to understand the question
That is an extra nonce/code that is used for auto-retrieval of the code on certain Android devices.
From the Firebase documentation on phone number verification:
Auto-retrieval: on some devices, Google Play services can automatically detect the incoming verification SMS and perform verification without user action. (This capability might be unavailable with some carriers.) This uses the SMS Retriever API, which includes an 11 character hash at the end of the SMS message.
This question already has answers here:
How to send one to one message using Firebase Messaging
(5 answers)
How to send Device to device notification by using FCM without using XMPP or any other script.?
(3 answers)
How to send device to device messages using Firebase Cloud Messaging?
(14 answers)
Closed 2 years ago.
I want to implement functionality so that when I click 'Poke' on a person's profile on my App, he/she should get a notification that there is a poke. This should work both in foreground, or when the app is closed. Nothing else is needed. No extra data needs to be passed. Just a simple notification saying that there is a poke.
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.
This question already has answers here:
Firebase FCM Usage Limits [closed]
(3 answers)
Closed 5 years ago.
I am trying to implement Firebase messaging service in my Application. The only use I make of firebase is to send data from my own created Web services and on the Android App side to receive these messages.
I don't use any other feature at all. I store the device token IDs on my own Database.
Suppose a million users have installed the App. Will there be any disruptions arising? I can't quite make out what the number of simultaneous connections means on the Pricing page. I am using the SPARK Plan.
The simultaneous connections referred to in the Pricings Page is for Firebase Realtime Database.
Firebase Cloud Messaging is a Free Service (also see my answer here).
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.