dineshsurya
dineshsurya

Reputation: 215

APNS resend notification when wifi not connected

when sending push notification, receiver side has not connected to wifi, Does APNS resend the notification when they connected back?

Upvotes: 0

Views: 171

Answers (1)

Martin R
Martin R

Reputation: 539715

From the "Local and Push Notification Programming Guide":

APNs retains the last notification it receives from a provider for an application on a device; so, if a device or computer comes online and has not received the notification, APNs pushes the stored notification to it. A device running iOS receives push notifications over both Wi-Fi and cellular connections; a computer running OS X receives push notifications over both WiFi and Ethernet connections.

So the answer to your question is YES (for the last notification).

Upvotes: 3

Related Questions