Can we send notification request to Firebase? [duplicate] - firebase

This question already has answers here:
How to send device to device messages using Firebase Cloud Messaging?
(14 answers)
Firebase push notification device to device
(1 answer)
How to send one to one message using Firebase Messaging
(5 answers)
Closed 8 months ago.
I'm developing an app in react native using firebase and I can't find if it is possible to send notification TO firebase.
More precisely, I want to send some kind of notification request to firebase so Firebase send notifications to devices.
Does anyone know how to do it?

You're probably looking for Cloud Messaging.
What you'll need:
A server to use FCM admin SDK (you can use Firebase Cloud Functions as well)
The device's FCM token that you want to send the notification to
Also take a look to In-App messaging.

Related

Firebase FCM API Scheduled [duplicate]

This question already has answers here:
FCM Schedule delivery date or time of push notification
(2 answers)
How can scheduled Firebase Cloud Messaging notifications be made outside of the Firebase Console?
(2 answers)
Closed 2 months ago.
I tried to figure out if it's possible to manage notifications which are created / planned via FCM API, as it can be done in the firebase dashboard.
Is there any way to get an ID, when notifications are created/planned, which can be used to modify / delete the planned push notification, before they are sent?
I'm working in a PHP environment

How to send flutter push notification to specific user? - Flutter Cloud Messaging [duplicate]

This question already has answers here:
Can we send custom push notifications to independent users using Firebase?
(1 answer)
Can I use specific token for firebase?
(2 answers)
How to send notification to specific users with FCM?
(2 answers)
How to send one to one message using Firebase Messaging
(5 answers)
Closed 1 year ago.
I want to send a notification for users who have made certain operations in my application. So I just want to send notifications to certain people, the options to send to a certain community already exist in firebase. I personally want to send notifications to some users. Is there a specific way or method for this?

Can I use fcm to send push notifications to other users? [duplicate]

This question already has answers here:
How to send one to one message using Firebase Messaging
(5 answers)
Closed 1 year ago.
I'm building a photo app where users can press like. Assume there is a user A and B. I need to show a notification when user A press like to user B. User B (app can be either in background or terminated) must get a push notification something like "Hey you got a like".
is it a good idea to use fcm in this situation?
if so how to accomplish these?
Referred links:
Restrict FCM Notification for a specific users in Flutter
https://firebase.flutter.dev/docs/messaging/usage
3
This is possible with firebase push notifications.
But its not possible to trigger this from client-side. You could accomplish this with a cloud function...

Firebase Push Notification Delivery Receipt [duplicate]

This question already has answers here:
FCM Notification Delivery Report
(2 answers)
Closed 4 years ago.
Is there a way to know if a Firebase push notification has been successfully delivered to a user's mobile device? If this is not possible via Firebase out of the box, is there any workaround for this?
There is no built-in delivery receipt. If you want such a thing, you can build it yourself though:
Send only data messages, so that all messages are delivered to your application code.
Send a delivery receipt from your code back to your server, e.g. writing it into a Firebase database.

How to send Firebase Cloud Messaging notification based on user property, user audiences [duplicate]

This question already has answers here:
How to send firebase notifications to audience via HTTP
(5 answers)
Closed 1 year ago.
Using Firebase Admin API how to send notification based on user property, user audiences also App Version.
In console send notification based on user property, user audiences also App Version is available.
There is currently no feature to send notifications to users with specific properties/part of a user audience/app version via the Firebase Admin nor the REST API.

Resources