apple-push-notifications Questions
5
Solved
I want to update some data to my application. Consider the application is in the background state, it is neither Voip or Music or GPS. Is it possible to update/send data to the application which is...
Freestyle asked 16/2, 2012 at 11:16
6
I'd like to better control what notifications are being displayed to my users and selectively silence some of them. In order to do this I have implemented a UNNotificationServiceExtensionin my app,...
Valiancy asked 19/4, 2017 at 15:19
4
Solved
After uploading a Flutter app to App Store Connect, I got the following email warning:
Dear Developer,
We identified one or more issues with a recent delivery for your app,
"[APP NAME]". You...
Loraleeloralie asked 14/3, 2019 at 16:27
15
Solved
There are a lot of stackoverflow threads regarding this topic, but I still didn't find a good solution.
If the app is not in the background, I can check launchOptions[UIApplicationLaunchOptionsRem...
Homemade asked 18/8, 2015 at 0:46
6
Tearing my hair out tying to get push notifications to work in iOS10. Current setup:
in func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLa...
Businessman asked 3/10, 2016 at 7:58
3
Solved
I'm developing an app that receives push notifications. This push notifications, each one contains valuable information that is showed up when the user opens the app from it.
My problem is that i...
Coquette asked 18/7, 2017 at 18:6
6
Solved
Notification is not being displayed when I send mutable-content:1 with push payload neither it hits the breakpoint inside the Notification service extension, although without mutable-content push i...
Patinated asked 9/3, 2017 at 12:35
31
Solved
I am implementing push notifications. I'd like to save my APNS Token as a String.
- (void)application:(UIApplication *)application
didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)newDev...
Atropos asked 21/2, 2012 at 5:48
2
Solved
I was wondering how applications like Whatsapp were able to give a delivery receipt (double green check) to the sender of the message.
I have seen that even if you force-quit Whatsapp (using the ...
Franckot asked 14/8, 2015 at 18:33
15
Solved
Is it possible test the Apple Push Notification Services without an iPhone application? (Creating an emulator on windows?)
If isn't, how could I test that? Is there a free sample application compi...
Soche asked 3/7, 2009 at 19:26
2
Solved
Firebase messaging push notifications work Desktop and Android web browsers without any problem but when I tested it on IOS devices it doesn't matter which browser I used, notifications and .getTok...
Disenchant asked 21/10, 2018 at 15:45
3
Solved
I am following the step given in https://github.com/Redth/PushSharp/wiki/How-to-Configure-&-Send-Apple-Push-Notifications-using-PushSharp to while working step by step for Apple Push Notificati...
Magnifico asked 14/1, 2013 at 8:37
3
I have integrated UNNotificationServiceExtension which allows me to change the push notification title before it's presented to the user.
I have followed the guidelines mentioned in apple developer...
Acromion asked 18/2, 2021 at 12:20
5
iOS 10 introduced push notification framework updates,
UserNotificationsUI.framework
As written on apple docs, it lets us customize the appearance of local and remote notifications when they ...
Justino asked 15/6, 2016 at 15:4
9
Solved
When my App is not running and receives a Push Notification, if I click on that notification, the App is launched - but then it doesn't prompt the user with the Alert-View I set up, asking them whe...
Milano asked 24/8, 2012 at 20:35
15
Solved
I am working on push notifications. I wrote the following code for fetching a device token.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOpt...
Aleris asked 10/1, 2012 at 4:54
4
I am sending a APNS to multiple devices in PHP in a loop.
while($row = mysql_fetch_array($result))
{
$row['devicetoken'];
$row['devcertificate'];
$row['prodcertificate'];
if($devprod=="dev")...
Dap asked 1/10, 2013 at 12:15
3
Solved
I got this error when my server try to push a notification to a specific device based on device token and ck.pem (combination between .pem file, cert and key).
Caused by: java.io.IOException: toD...
Xerophagy asked 20/3, 2014 at 6:43
3
Solved
The apns-expiration field governs how long Apple will hold on to an apns message before giving up on delivering it (for example, if the device is turned off).
According to their docs, a value of z...
Medici asked 19/6, 2017 at 12:8
4
Solved
Preface:
My App is Flutter based - but native code implementation is required to get FCM messages working, see below for more details
GitHub issue #154 for reference.
I'm having immense trouble ge...
Knorring asked 16/10, 2021 at 3:48
0
I've been studying push notifications, specifically background push. I've followed Apple docs and various stackoverflow posts - Added Push Notifications capability, Remote Notifications in Backgrou...
Baucis asked 27/4, 2023 at 3:0
6
Solved
We implemented push notifications using FCM in chrome and firefox and it worked fine, but Safari doesn't support Service Workers which is mandatory for FCM.
Did anyone deal with this kind of issue...
Busload asked 7/8, 2017 at 20:19
8
Solved
I tried and tried to generate a .pem file, every time generating certificates from the client's account and then generating the .pem file using the terminal, but it's of no use. Can anyone give a s...
Extenuate asked 21/1, 2014 at 6:12
2
Solved
I have set up push notifications on my React-native app with zo0r / react-native-push-notification . It works on Android, and on iOS when the app is in background mode.
However, the notification ...
Morbid asked 22/3, 2020 at 12:1
3
Solved
I've been trying to update my (local & push) notifications to Communication notifications.
When a user receives a communication event from one of their friend, I want the displayed notification...
Restricted asked 30/6, 2021 at 16:24
© 2022 - 2024 — McMap. All rights reserved.