Questions tagged [silentpush]

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.

Docs: https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CreatingtheNotificationPayload.html

Famous Q&A: What is Silent Push Notification? When does the device receive it?

51 questions
2
votes
2 answers

Receiving only the last background silent push notification from GCM

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…
2
votes
0 answers

iOS silent notification cases

For silent push notification I have implemented this method : - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))handler { …
1
vote
1 answer

How to send silent notification to ioS and Android using Azure Notification Hub

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…
Learn AspNet
  • 1,192
  • 3
  • 34
  • 74
1
vote
0 answers

IOS Silent Remote Push Notifications not delivered to app

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…
RicFey
  • 11
  • 2
1
vote
0 answers

What is the difference between closing an iOS app and force quitting/killing an app?

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…
Claudiu
  • 485
  • 1
  • 4
  • 17
1
vote
0 answers

silent push notifications are not triggering the "didReceiveRemoteNotification" after some time?

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…
umer farooqi
  • 552
  • 2
  • 8
1
vote
1 answer

APNS Push notification Background non working anymore

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…
1
vote
5 answers

iOS: Is it possible to send a push to Notification Center without a sound?

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…
user246392
  • 2,661
  • 11
  • 54
  • 96
1
vote
1 answer

How do I launch an App or the Incoming Call UI when I receive a silent push notification on an iOS app?

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…
Coder_98
  • 117
  • 3
  • 10
1
vote
2 answers

iOS silent push notification cancelled

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…
timd baw
  • 11
  • 2
1
vote
1 answer

How to handle/store push content to core data on background?

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…
Gopik
  • 255
  • 2
  • 17
1
vote
1 answer

Silent iCloud changed notifications not received in background

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 …
Reinhard Männer
  • 14,022
  • 5
  • 54
  • 116
1
vote
1 answer

Is possible use silent push to wake up APP and get the VOIP call?

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…
Victor
  • 109
  • 1
  • 2
  • 11
1
vote
1 answer

Unable to receive silent notification when app is inactive iOS

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…
1
vote
1 answer

iOS:Issue with Silent Push triggering Local 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…
anoop4real
  • 7,598
  • 4
  • 53
  • 56