Firebase Cloud Messaging notification permission? - firebase

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?

Related

Is it possible to implement notification grouping/bundling using FCM in ionic?

I'm sending notifications to users with FCM (firebase cloud messaging) using firebase functions.
If a notificatoin sent while there is already old notification in the device I want to group those notifications like SetGroup does.
Is it possible?

When to use iOS device token when sending push notifications through FCM?

I'm confused about the implementation of cloud messaging through FCM. To send an iOS device a remote (push) notification, an iOS device token is needed for APNs. However, a Firebase app doesn't interface with APNs, it interfaces with FCM, which interfaces with APNs. But to send a push notification (or message) to any client through FCM requires an FCM token. Does this mean that the iOS device token is not needed for a Firebase app to send push notifications to iOS devices?
Only an FCM token is required to send a message to a device. There is no Apple-specific data required. Firebase handles the details of each underlying push notification system.
Firebase uses method swizzling to automatically map your FCM token to your APNs token, as explained in the Firebase Docs here (or see images below).

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

Wake up react native app to obtain fcm token

We recently integrated firebase to out react native apps on android and ios for push notifications using react-native-firebase. Since we do not currently have the fcm tokens and we can only obtain them once a user opens the app once again. Is there a way to send notifications to all the users or to schedule a local notification using react-native-firebase without the user opening the app so that we can obtain the fcm token for the device.

How to read FCM notification statistic in web app

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.

Resources