apple-push-notifications Questions
9
Solved
In iOS 9.3, the didReceiveRemoteNotification method gets called on both of the following occasions.
1) When the push notification is received
2) When the user launches the app by tapping on the ...
Flautist asked 8/9, 2016 at 4:56
1
Solved
Missing Push Notification Entitlement, even with aps-environment entitlement set. iOS and Testflight
Good morning!
I am working on getting my app to receive push notifications from Firebase cloud messaging. when I add my build to testflight, I get a warning email with the error code: ITMS-90078: M...
Accountancy asked 19/2, 2021 at 15:53
1
Solved
A have an app made in SwiftUI, with Parse used for DB.
I'm some parts of the app i've integrated some cloud functions that send notifications (for example: when someone send's you a message, you wi...
Workroom asked 19/2, 2021 at 19:36
4
Solved
We have developed an ios app using phonegap and have implemented push notification functionality in our app.
Push notification works perfectly fine for us. We have configured push notification for ...
Scholium asked 5/12, 2014 at 8:43
1
Solved
I got this mail from Apple.
"On March 29, 2021, token and certificate-based HTTP/2 connections to the Apple Push Notification service must incorporate the new root certificate (AAACertif...
Found asked 12/2, 2021 at 9:30
1
Solved
On March 29, 2021, token and certificate-based HTTP/2 connections to
the Apple Push Notification service must incorporate the new root
certificate (AAACertificateServices 5/12/2020) which replaces...
Freethinker asked 11/2, 2021 at 11:25
4
Solved
This question, as you may have inferred from the title, is really two questions in one.
First Question: Must I use HTTP/2.0 to send Apple Push Notifications?
On the APNs Provider API documentatio...
Deafen asked 24/12, 2015 at 0:27
5
I am new to Flutter and IOS. I am configuring FCM push notifications for both Android and IOS.For android its working fine.I have done by referring this link https://medium.com/@jun.chenying/flutte...
Liquorice asked 3/3, 2020 at 8:54
1
I know this question have been asked many times but none of the answers work for me. Some of the questions dont even have an answer.
I am try to bundle or group similar notifications on ios. I am ...
Provincial asked 9/4, 2020 at 10:51
4
const options = {
priority: 'high',
collapseKey: user_id
};
const deviceTokensPromise = db.ref('/users-fcm-tokens/' + user_id).once('value');
deviceTokensPromise.then(tokensSnapshot => {
if (...
Discovert asked 2/1, 2018 at 1:24
1
For certain types of messages, I want to target users by FIRTokens vs topic, which are stored in my real-time database. I load these tokens with async/await and then decide if I want to send notifi...
Baro asked 6/2, 2021 at 8:56
2
Solved
This question has been asked (e.g. here and here), but none of the solutions seems to apply to my setup.
I am developing an app in iOS 9 / Xcode7 (beta 5).
I have created an explicit App ID / bundl...
Semiautomatic asked 21/8, 2015 at 7:0
4
I wrote a test php page that just sends out a generic push notification and it works intermittently. Sometimes it delivers the message and other times I get this error:
"Message: stream_socket_cli...
Ijssel asked 4/7, 2010 at 17:31
3
Solved
The purpose is to send push notification with only badge value & nothing else (no banner).
I integrated parse sdk to test push notification & send this push notification
{
"alert" :"",
"...
Karinkarina asked 5/1, 2015 at 10:30
1
Solved
Context : XCODE 12.0.1
I'm using Push Notifications in Ionic. The configuration is OK. I added the Push Notification Capability in Signing and Capabilities .
I build my app and I do npx cap open io...
Tatty asked 12/1, 2021 at 15:52
0
So there is possible to send update status push notification from PWA to a device (Android or Ios)?
I have a PWA, and a Flutter based Webview with FCM. (PWA web push work also with FCM)
PWA is Lara...
Electrojet asked 28/12, 2020 at 16:53
4
I have an app in which I'm trying to receive and handle SILENT push notifications.
I'm registering for APNs as follows:
UNUserNotificationCenter.currentNotificationCenter().delegate = self
UNUse...
Bertha asked 3/11, 2016 at 16:9
3
Take an iOS app like Instagram. Instagram is fundementally a real-time application that updates its UI whenever a user interacts with you. For example, if someone likes your post and you are using ...
Nigel asked 11/12, 2020 at 0:2
7
Using the newer Firebase cloud messaging with method swizzling i am successfully able to receive a payload in the didReceiveRemoteNotification method in my app delegate when my app is foregrounded....
Hambley asked 19/7, 2016 at 5:58
3
I'm using this Ruby code to receive errors from APNs on unsuccessful pushes:
if IO.select([ssl], nil, nil, 5)
read_buffer = ssl.read(6)
process_error_response(read_buffer)
end
I noticed a weir...
Uprising asked 2/5, 2012 at 19:15
12
Solved
I am trying to set up a push notification system for my application. I have a server and a developer license to set up the push notification service.
I am currently running my app in Swift. I wou...
Flotilla asked 22/7, 2014 at 22:59
6
I got the pop up, i have accepted, i see it in the notifications and it is turned on but this code always returns no and i cant seem to find out why
UIApplication *application = [UIApplication sha...
Kuban asked 30/1, 2015 at 18:26
5
For an app with some kind of chat based features I want to add push notification support for receiving new messages.
What I want to do is use the new token based authentication (.p8 file) from Appl...
Forgat asked 9/5, 2017 at 12:46
5
Solved
I set up my app to be able to send Apple Notifications using firebase and I verified that it works using the console. Now I want to do phone authentication which is built on top of APN.
So I wrote...
Tannenbaum asked 20/5, 2017 at 23:15
4
I am developing a flutter app for both Android and iOS. It has notifications, so I did implement the firebase_messaging API. I am sending notifications to certain devices by device ID and sending n...
Audiophile asked 3/8, 2020 at 10:34
© 2022 - 2024 — McMap. All rights reserved.