We have recently started using FCM as our notification service , We are using batch process to send notifications to Android and IOS through FCM. Problem is notification_recieve event is not showing up in the events tab of firebase analytics event tab in android app. As per as documentation this event should be logged automatically for android app.
The documentation for the notification events all contain the phrase "when sent by Firebase Notifications".
For example: notification_receive -- when a notification sent by Firebase Notifications is received by a device when the app is in the background
My tests indicate "sent by Firebase Notifications" means "sent from the Notification panel of the Firebase Console". The events are not generated when the notifications are created by posting data to https://fcm.googleapis.com/fcm/send.
Related
I am using Firebase notification Scheduler from Rapid API
for push notifications, I generated an FCM token to send notifications to a particular device.
but the problem is when I am using Scheduler Post API it is showing 200 as the Status code and I get Scheduler message-id but I did not get the notification in my flutter app
So anyone knows how to implement a flutter
for reference, you can check the website
Firebase notification Scheduler
I want to create an event management app in which the admin can create new events and the client can book seats for the event.
What I want to achieve is that when the admin creates a new event, a push notification (Even if the app is not open in the background) should be received on the client app.
I have been trying to send notifications through FCM (Firebase Cloud Messaging). But that is working only when I click the Publish button on the Firebase Console. How can I code it so that a push notification is fired automatically when the admin creates a new event?
If you use the Firestore or Firebase real-time DB to store events, you can use a Firebase cloud function to send push notifications. Read more about cloud functions here https://firebase.google.com/docs/functions/use-cases
We are sending push notification through Firebase to iOS and Android users. Can I track with Firebase analytics the received push on iOS and Android including if the app was not open in the background?
Thanks
Yes, following automatically collected events let Firebase collect Notification based events in the Analytics reports.
notification_dismiss
notification_foreground
notification_open
notification_receive
I am using FCM.
I made app server and send notification through app server.
I followed document of firebase analytic. Now, i want to know notification_open and notification_dismiss.
But it only show me notification_foreground and notification_receive.
According to https://support.google.com/firebase/answer/6317485?hl=en,
Notification_open and notification_dismiss is automatically collected event.
Why i can't get notification_dismiss and notification_open event?
Following image is my all analytics event on console.
enter image description here
The documentation for the notification events all contain the phrase "when sent by Firebase Notifications".
For example: notification_receive -- when a notification sent by Firebase Notifications is received by a device when the app is in the background
My experience is that "sent by Firebase Notifications" means "sent from the Notification panel of the Firebase Console". The events are not generated when the notifications are created by posting data to https://fcm.googleapis.com/fcm/send.
I have created notification web app that can send GCM notification to android devices, now I want to track and show the statistic of sent notification like one display in firebase notification window Firebase Notification Console
firebaser here
There is no public API for accessing the statistics from the Notifications panel in the Firebase console.