Ios push notification in ionic application - firebase

Push notification not receiving to my IOS device which is working fine for android. I am using Firebase to send notification for android and IOS, I have configured the google-service-info.plist file to my Firebase account and enabled push notification in Xcode before taking the build. But I am not able to receive the notification, is there any additional configuration that I required to change for IOS? Why am not getting push notification which works fine by default for android?
I am able to get device token of IOS that am using this token to trigger notification.

if you are still having this problem with ios push notification. This is how i solved it.
Login into your apple developer account and create an APNs Authentication key (.p8 file).
Then upload it to your firebase console in the cloud messaging tab.

Related

Symfony Push Notification On IOS got Auth error from APNS or Web Push Service

An authentication error occurred while I was trying to push notification from api to app.Especially this function still works when I push notification to android devices but it fails in ios. Please see the photo link below:
https://i.stack.imgur.com/1pydw.png

Flutter Notification Sound for IOS Apps

I want to set custom sound to notification in my application which using firebase notification.
In android worked perfectly, but in IOS not working. I put audio file in ios/runner, but notification received silently.

Flutter FCM Push Notification Not Working when app is in foreground

I am sending push notifications using Flutter's firebase_messaging package and I send them in the firebase console. When the app is in the background or when it is closed, I am receiving the notifications, however, when the app is in the foreground it is not working. Please tell me if I need to integrate Javascript to make this feature work, and please reference a resource that I can use in order to figure out how I can integrate Javascript with fcm as I haven't found a way to do this with flutter.
I figured out that someone can use the flutter local notifications plugin so that when the push notification is sent and the app is on the foreground, normally no notification would be delivered to the system tray, but using the flutter local notifications plugin, it would be possible to send a local notification when the app is on the foreground.
To Understand better.
Have a look into this table.
https://pub.dev/packages/firebase_messaging#receiving-messages
It states that when your Android or iOS Application is in foreground, OnMessage callback is called if you are sending notification payload or data payload as notification body.
You are receiving notifications when your app is in background because, when an app is in background notification is send to system tray and OS (Android or iOS) handle it for you. And your app is launched when you click on notification from system tray.
When your app is in foreground you have to catch notification payload in onMessage and handle it explicitly, you can create local notification in this case.

Push notification without firebase console

I have make an android app in android studio and push notification is send from firebase console. Now I want to send push notification from a screen(title, message and a button) which should be made in ionic instead of firebase console. Is there any who have do this before.

Firebase open rate of push notifications shows no data

I am sending Push Notifications on my iOS application from Firebase console and the notifications are delivered however the Notification section in Firebase does not show Open Rate(Mean how many notifications were open out of total sent ). Why is that happening ?
I think gcm is not related here, he said he is working with ios, not android. I am experiencing the same behaviour with my iOS app here!

Resources