Use this tag for Silent push notifications to mobile
Background update notifications improve the user experience by giving you a way to wake up your app periodically so that it can refresh its data in the background.
I'm developing an Ionic 2 app wich receives push notifications. It must receive silent background notifications, meaning the notifications don't get visible in system notification area. Instead, when the app is open, the notifications are sent to…
For silent push notification I have implemented this method :
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))handler
{
…
I am trying to test silent notifications using Azure Notification Hub. I have not used it before so I wanted to know if we can do it. If yes, then what should be the payload. Currently, when I click on "Test Send" it opens a payload and I wanted to…
Need some help interpreting this:
I have set the background modes and remote notifications in info plist. Looking at the console logs, message arrives to the phone but it doesnt seem to wake the app. The following info shows up.
I am not able to…
I don't understand the difference between closing an app and killing it from the user point if view.
As far as I know if I want to close an app I will proceed like explained here https://support.apple.com/en-us/HT201330
But if I want to kill the…
I'm using this apns payload for silent push notifications
{"aps":{"alert":"","badge":10,"content-available":1,"title":"Umer", "message":"Hi umer...", "id":"1", "notification-type":"Text","apns-priority":"10", "apns-push-type":"alert"}}
this payload…
Sorry to repost this question as it was asked a few times, but no answer was ok for me.
My app don't wake up anymore on background notification.
So I updated my php script and added HEADERs field as documented here and here
But no luck.
Here my…
On Android, I can send a silent push that gets delivered to the system tray. On iOS, I'm not sure if this is possible. I removed the alert property from aps, and I'm sending an empty string for sound. What I'm seeing is that the badge count is…
I am trying to make an app the launches the app or the incoming call UI when a silent notification is received.
Currently I have the notifications working and I am able to send a notification and print out a log when I receive the notification
This…
In my application, I use silent push notification in order to communicate regularly, but I am in trouble because the silent push notification I received while not launching the application is not processed. OS version is iOS12. I am using FCM to…
In my app,
We have a feature to store content receive from push notification to locally core-data and are facing data loss issues on background state,
Steps we followed:
1 - Push received in didReceiveRemoteNotification method.
2 - Insert the new…
My app uses a public iCloud database that is synchronised using push notifications.
The subscription to iCloud notifications uses the following notificationInfo:
let notificationInfo = CKNotificationInfo()
notificationInfo.alertBody = nil
…
if My app works at background, can I use silent push to wake app and get the VOIP call?
I used "jpush" to post a silent push which can work when connecting my idevice with Xcode and run APP.
If my idevice doesn't run APP with Xcode, I can not…
I am developing an app and i am using silent push notification, to send some data. Push is working fine when app is active but if i swipe out the app or it's inactive, my app is not receiving the push notification. I have enabled push notification…
In my app I am using a daily silent push to trigger some calculations inside my app and based on the calculation result I am triggering a local notification.
Say for example: A daily goal.
Once the silent notification reaches my app, I trigger a…