Questions tagged [firebase-notifications]

Firebase Notifications is a free service that enables targeted user notifications for mobile app developers. Firebase Notifications is a cross-platform solution that lets you easily deliver notifications at no cost.

About Firebase Notifications

Firebase Notifications is a component of the Firebase suite of tools for cross-platform application development.

  • Send free and unlimited notifications across Android, and iOS.
  • Send messages and analyze effectiveness in one dashboard without writing any code
  • Integrate with Firebase Analytics to deliver messages to a user segment

Related tags

749 questions
6
votes
3 answers

Problems to upload APN certifcates Firebase

I'm trying to configure my iOS app to receiver notifications with Firebase. If I export the certificate and the private key without a password and try to upload it (production or development) on Firebase console I get the error "Incorrect…
6
votes
2 answers

Android Firebase Messaging: How Update UI from onMessageReceived()

I have successfully implemented Firebase messaging in my app. Works great in the background and onMessageReceived() gets called when the app is in the foreground (yippee!). The issue I have is that I need to update the UI dynamically and I am stuck…
6
votes
3 answers

Cannot find protocol declaration 'FIRMessagingDelegate'

I'm trying to add Firebase Messaging to my iOS app. I've followed the steps in the Firebase documentation, namely: Uploaded the APNs Certificate Imported Firebase and added [FIRApp configure] Imported Firebase Messaging with @import…
6
votes
0 answers

Opened rate of Firebase notification is not getting calculated on console

Opened rate of Firebase notification is not getting calculated on console for all the notifications. In few forums, it is advised to wait for 48 hours to get the analytics but in our case, analytics for opened notification are not reflecting. we…
6
votes
0 answers

How to send Image with firebase Push Notification using swift 3

Can any one help me to send notification like this: I'm using Firebase Notifications. I tried to put the image URL in value of Advanced options and key 1 when I send my notification. The image URL appears in the debugger, but no image appears when…
6
votes
1 answer

Send URL in push notification Firebase

My application is currently receiving Text, Image and both as a push notification from Firebase console. I want to send a URL too as a notification from my Firebase console to the app user. On clicking the notification. user shall be redirected to…
6
votes
4 answers

Show Notification of Firebase Message onReceived when App is in Background Through api

I have built a chat application . It is working fine . both users can chat easily but where I get Stuck is if one user's app is at background and screen is off , user is unable to be notified of that received message. What I want now is in my…
6
votes
1 answer

Firebase notifications are not sending as high priority

When I send a notification to my Android device through the Firebase web interface, the notification doesn't peek down from the status bar. If I want to see the notification, I must swipe down. This occurs even when I have the priority set to High…
Dick Lucas
  • 12,289
  • 14
  • 49
  • 76
6
votes
0 answers

Is FCM notification reliable or not in android?

I am working on FCM notification in my android application.I am having a issues that there are some users who are not getting the notification and those respective notification is being lost.I just want to know what are the scenarios in which the…
6
votes
5 answers

How to get the body of a push notification sent from Firebase console in iOS 10 and Swift 3?

I'm developing an iOS app that should receive push notifications sent from the Firebase console. I'm using Swift 3 and iOS 10. As recommended by the Firebase documentation, we must assign our delegate object to the UNUserNotificationCenter object to…
iobird company
  • 111
  • 1
  • 6
6
votes
2 answers

Firebase Cloud Messaging - Send message to all users

I'm new using the Firebase Cloud Message. I built an IOS app to receive push notifications. The app works fine. I send messages from the Firebase console and they're displayed correctly. Now I`m trying to build an web api to allow my customer to…
6
votes
1 answer

'Error sending message' Firebase Cloud Messaging Service

I was using the Firebase Notification in my app. Everything is setup but when i push the notification from the console, I get this error : Here is my code : MyFirebaseInstanceIDService.class package…
user3217999
  • 61
  • 2
  • 3
6
votes
4 answers

Firebase Cloud Messaging - "success" and "failure" in response JSON

I use Firebase Cloud Messaging to deliver notifications to my Android client apps, each notification should be sent to a single device according to its registration token. Each time I send a notification via https://fcm.googleapis.com/fcm/send, I…
6
votes
1 answer

Notifications tracking when using FCM

Is it possible to track the notification status, whether it was opened or canceled by the user, when I send a push notification without using firebase services dashboard? I am using Advanced REST client and I would like to record data about the…
6
votes
1 answer

What should I specify for Authorization key in Firebase Cloud Messaging

Can you guys help me (and others who are just as frustrated as I am) to get how Google Firebase works straight? The documentation is so confusing that it makes me feel outright an idiot. Here is the thing. I am simply trying to send a push message…