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.
Related
This question already has answers here:
Is there a way to delete push notification data message sent by FCM?
(2 answers)
is there a way to remove or recall a push notification sent by fcm
(1 answer)
How to Delete already sent Remote push notification with firebase in iOS?
(3 answers)
Closed 4 months ago.
We are using firebase in a web project where have .net as our backend, and we send push notifications using firebase cloud messaging to our users' android and IOS devices.
When sending notifications to firebase and the user device is offline, the notifications can't be delivered and the notification status will be pending according to firebase documentation.
I want to know if there is a way we can cancel these pending notifications and stop them midway to the user's devices.
This question already has answers here:
Notification shows after android app is force closed
(4 answers)
Closed 4 years ago.
How can one display a system notification in android when the app is destroyed like most social messaging apps.
The best way to do this, is to use Firebase Cloud Messaging for your purpose.
https://firebase.google.com/docs/cloud-messaging/
Of course you can use Services to show Notifications from your app, but then you need to take care of your Services to keep your Services alive to update your messages and send notifications.
This question already has answers here:
How to send Device to device notification by using FCM without using XMPP or any other script.?
(3 answers)
Closed 5 years ago.
I want so send push notification directly using firebase. I don't wanna use any server!
Is it possible? To send Firebase push notification Android to Android Directly using FirebasePlease Help!
sir firebase is also a server so if you want to send notificaion to every user device or individual device use firebase or use another services like php
without server is not possible
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.
This question already has answers here:
How to send device to device messages using Firebase Cloud Messaging?
(14 answers)
Closed 6 years ago.
I am developing a chat app using firebase real-time database. I am able to exchange messages but i want to have a message alert notification for new messages.
Sending notifications using firebase console is working but now i want to automate it without firebase console.
Do i need to create my own app server for push notification between android clients? Or is there another way to achieve this instead of creating a server?
Thank you
Firebase realtime database is very useful precisely for its "realtime" aspect.
You could create a Service that listens for changes in the database and create a Notification whenever the client receives a new message.