Notification Delivery Issues for Location Push Service Extension

We are currently testing the implementation of our Location Push Service Extension (LPSE) in both Ad Hoc and Release environments. We have encountered an issue where LPSE notifications, which were previously working correctly, suddenly fail to be delivered on some devices. After a period of several hours, the notifications resume arriving, but the issue remains intermittent. Notably, during these periods of suspected delivery restriction, regular push notifications (e.g., those using apns-push-type: alert) are delivered and displayed without any problem.

[Detailed Situation]

  1. Test Environment and Scope

We are testing LPSE after obtaining the necessary entitlements, in both Ad Hoc and Release environments. The issue is not observed on all test devices; only certain devices are affected.

  1. Observed Behavior

Under normal circumstances, LPSE notifications are received and the extension is activated; however, on some devices the notifications suddenly stop arriving. During these periods, even when sending notifications with apns-push-type: location directly via the CloudKit Push Notification Console, no response is observed on the affected devices. The APNs server (api.push.apple.com) always returns a 200 OK response via HTTP/2, and our server-side logs and configurations (DNS resolution performed on every request, using the same JWT token for 59 minutes per session, communication via HTTP/2 with ALPN Protocol: h2) show no issues. Other app functionalities (network communication, UI responsiveness, etc.) work normally.

  1. Sending content

When sending notifications from our server to APNs (api.push.apple.com), we use the following configuration (over HTTP/2):

const payload = { aps: { 'content-available': 1 } }; const headers = { ':method': 'POST', ':path': /3/device/${apnsToken}, 'Authorization': bearer ${jwtToken}, 'apns-topic': 'ot.Here.location-query', 'apns-priority': '10', 'apns-push-type': 'location', 'Content-Type': 'application/json' };

We perform DNS resolution for every request, use the same JWT token for a 59-minute period per session, and communicate via HTTP/2 with ALPN Protocol: h2.

  1. Hypothesis on the Cause

We suspect that due to an implementation issue, silent push notifications (using content-available: 1) were being sent every few minutes concurrently, which may have triggered an APNs delivery restriction (rate limiting). As a countermeasure, we have completely stopped sending silent pushes and any other background notifications aside from LPSE; however, the issue persists. Additionally, even after resetting affected devices, the delivery problem continues to occur.

[Questions for Diagnosis]

  1. Given the above situation, is it reasonable to suspect that excessive silent push notifications have triggered an APNs delivery restriction?

  2. Does such a silent push restriction affect LPSE notifications (i.e., those sent with apns-push-type: location)?

  3. Do APNs delivery restrictions persist even after a device has been reset?

  4. Can a high volume of LPSE notifications alone (without silent pushes) also trigger a delivery restriction?

→ This is our primary concern since it poses a significant implementation challenge.

Please let us know if any additional information is required for diagnosis.

Additional information:

When I sent an LPSE from the CloudKit Notification Console in the development environment, I confirmed the following in the delivery log.

  1. received by APNS Server
  2. discarded because the user disabled notifications for the app

(The application is available on the device but the user disabled notifications for it)

However, when I sent a normal notification with "apns-type" of alert instead of location, the device received it successfully.

By the way, we allowed a certain amount of cooldown time for this test device, leaving it without receiving any new notifications for a full day after it was no longer able to receive LPSE, but the situation did not improve.

Looking over what you've said, this is what immediately caught my eye:

"content-available"

Why are you including that at all? I don't know if it's the exact cause of what you're seeing, but everything you're describing is fairly standard behavior for background update pushes. If you won't want your pushes to be deferred, then you shouldn't be including "content-available".

However, when I sent a normal notification with "apns-type" of alert instead of location, the device received it successfully.

Did your alert pushes include "content-available"? And was "apns-priority" 10? Assuming the answers are "no" and "yes" then, yes, that's what should happen. That configuration has the highest possible delivery behavior across all APSN configurations*.

*For example, voip pushes behave "the same" because you can't do better than "deliver this now".

__
Kevin Elliott
DTS Engineer, CoreOS/Hardware

@DTS Engineer

Thank you for your response.

Here is some additional explanation regarding our situation:

• When we sent a normal alert push from the CloudKit Push Notification Console, we did not include "content-available" and set the priority to 10.

• When we sent silent pushes, we set "content-available" to 1 and the priority was 5.

• For LPSE (apns-type “location”) pushes, the ones sent from our own server included "content-available" and were sent with priority 10. However, the LPSE pushes sent from the CloudKit Push Notification Console did not include "content-available" (using the Console’s default settings) and were sent with priority 10.

After instituting a cool-down period of several days with no notifications sent, we resumed sending LPSE pushes via the CloudKit Console (development environment) and observed divergent behavior among devices:

Device A: – The LPSE push continues to be discarded.     2025/03/23 21:55:22.000 JST – Received by APNS Server

2025/03/23 21:55:22.034 JST – Discarded because the user disabled notifications for the app

When we sent a normal alert push (priority 10) from the Console, it was "Successfully delivered to the target device." (Note that we did not send any notifications from our own server in this case.)

Device B: – The LPSE push was initially received, but later it was discarded.

2025/03/23 20:48:24.053 JST – Received by APNS Server

2025/03/23 20:48:24.247 JST – Successfully delivered to the target device

2025/03/23 21:55:41.414 JST – Received by APNS Server

2025/03/23 21:55:41.446 JST – Discarded because the user disabled notifications for the app

Additionally, in the case where the initial LPSE push appears to have been successfully delivered (Device B), we did not see any sign that the extension’s didReceiveLocationPushPayload method was triggered (our NSLog statements do not appear in Console.app), and we did not observe any location data being saved to our server. Since we have not changed the settings that previously allowed the extension to be launched, we believe there is no issue with our implementation.

We appreciate your insights into this matter and would welcome any further recommendations regarding the LPSE behavior.

Notification Delivery Issues for Location Push Service Extension
 
 
Q