Questions tagged [apn]

Use this tag for Access Point Name only. For Apple Push Notifications use the [apple-push-notifications] tag.

An Access Point Name (APN) is the name of a gateway between a mobile network and another computer network.

For more information, see:

242 questions
0
votes
2 answers

Is there dry_run functionality for APN?

While implementing notification sending functionality for android and ios, I ran into the issue where dry run is needed. For FCM, this solved the problem but the issue still remains for APN. Is there the dry run functionality for APN?
0
votes
0 answers

Apple MMS APN - MDM-Payload

A friend has once made a configuration file for APN... now I wanted to add another for MMS but whatever I do its not working. does someone know if Apple support the automatisation to set MMS ? if they would support it what does the payload need to…
Veruga
  • 1
0
votes
0 answers

APN ( apple push notification ) using expo cli not able to access the custom data

i using APN (Apple push notification ) for expo react native app, i sending push notification using php code from server, with notification i am sending custom data reacordid. , when i am try to use that use recordid, app is getting closed. Below…
satya o
  • 11
  • 4
0
votes
0 answers

Flutter iOS App crashing on receiving VoIP notification

I am sending a VoIP notification to my app to show the call screen. I am using flutter_callkit_incoming to handle these pushes. However, recently I have been getting crashes with the following text from Xcode, saying this is the line causing the…
Abdelrahman
  • 623
  • 7
  • 13
0
votes
0 answers

Pushnotifications on macOS with swift

My problem is that I can't manage to specify an icon in the pushnotification for macOS. I have already tried it with an AppIcon as well as other icons which I specify as AppIcon. It should be noted that all icons in my settings are displayed…
0
votes
0 answers

Does Apple can block push notification for a specific phone?

Our iOS Swift app registered and save the Firebase cloud messaging token in the cloud. We have a Firebase cloud function that check if something X happens in the cloud, we send a push notification (sendMulticast) to the users. This is working…
David
  • 1,241
  • 20
  • 36
0
votes
0 answers

IOS notifications stop working until FCM token refresh

I have a live production AppStore App via flutter, IOS notifications work fine for a while (after the user performs a first login). Then out of nowhere, they stop being displayed! Sometimes they go "missing" (example: maybe messages don't show, but…
Petro
  • 3,484
  • 3
  • 32
  • 59
0
votes
0 answers

{"reason":"BadDeviceToken"} http2 IOS notifications from Nodejs

I am trying to send push notifications using http2 api from my node backend. I have the following with me from the IOS team . .p8 AuthKey Team ID Key ID We have generated the build from the production environment. Key is generated using the…
swaths
  • 3
  • 3
0
votes
0 answers

Android APN configuration: how to specify Network Identifier?

In APN wiki https://en.wikipedia.org/wiki/Access_Point_Name I can see that APN is a Network Identifier + Operator Identifier. After looking through the Android APN Configuration screen (e.g. Connections -> Mobile Networks -> Access Point Names and…
0
votes
0 answers

How to create APNs as a team member

I am a developer of a team and my account is not the holder on the developer.apple.com ( but it is admin) our previous APNs was expired and I wanna create a new one, as you know when we want to create a CSR on the developer portal we need to have a…
mohsen
  • 4,698
  • 1
  • 33
  • 54
0
votes
0 answers

How to handle APN push notification in iOS using flutter

I am struggling to handle APN push notification in iOS in background and terminated state. I have tried using FCM background handling service. But whenever a push notification is fired using APN Token it doesn't call _firebaseBackgroundHandler()…
0
votes
1 answer

When will Ios VoIP PushKit token get updated

My app is using both user notification token and PushKit token. I have managed to get both the tokens and saved them in my server. However, when i uninstall and reinstall my mobile app, APN only update my user notification token but not PushKit…
0
votes
1 answer

Getting Baddevicetoken when built from automation platform?

I'm trying to send push notifications to QA testers. Local builds on Xcode are receiving push fine. If I archive an IPA under development, thats fine. But any build that goes through stampede continuous automation system will result in invalid…
user1869558
  • 697
  • 3
  • 11
  • 21
0
votes
1 answer
0
votes
0 answers

php apple push apn not send push notification before 2 month its workinf fine but right now code not work

function sendIphonePush($deviceToken, $msg, $badge = 0, $check = 0, $version = 1) { $apnsHost = 'gateway.sandbox.push.apple.com'; //sandbox phasesandbox. $apnsCert = 'Rendatsdsse_UserNddd.pem'; $apnsPort = '2195'; …