How to read FCM notification statistic in web app - firebase

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.

Related

Firebase Cloud Messaging notification permission?

I have a web application and I want to send notification via fcm. But not with this browser push notifications. I will list it in the app. How can I do this without having to allow notifications in the user's browser?

Show notification based on a Firebase values

I want to show notification in my app even if the app is closed.. I don't need Firebase's Push Notification Service. The idea is similar to WhatsApp's message notification service.
When a value is added to firebase by a user another user should receive notification that there is a value change
Can someone tell me how this is done and What should I use to achieve this?
Push notifications for all major apps run through APNS for iOS, and Firebase Cloud Messaging for Android. While the apps may use a higher-level service from their application code, those services depend on APNS and FCM for the actual message delivery.
To see an example of how to build a notification system on top of this, based on values being written to a database, see Send Firebase Cloud Messaging notifications for new followers.

background push notification in ionic3

I have completed an e-commerce app in ionic3. The problem is I want user to be notified when new offers or deals are added in our inventory. This should be a backend process, whether or not the app is open or close.
Note: There is no firebase involved.
If you want to use to get notification in same device then you can try Local notification native plugin for notification and if you want to send notification to other device then you have to use Push or FCM or Onesignal and yes this all required firebase to send push notification to generate device id/key.

Push notifications through cloud messaging

How can I perform a cloud function that is responsible for sending push notifications to mobile devices (Android or ios) previously registered from an app and that previously saved the messaging key on the server? The idea is that when there is modification of a child in the realtime a push notification is sent to the user. Thank you

Firebase notification_receive not showing up in events in Firebase analytics

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.

Resources