Reputation: 81
I would like to know what are the possible way to identify whether our push messages are finally delivered from the APNS server.I already came up with some information as stated below
Basically i would like to know how do we acknowledge a particular push message being delivered to the indented device.I greatly hope your views on my problems.
Thanks In Advance, VishnuPrasad Kalathil.
Upvotes: 1
Views: 1016
Reputation: 11450
No, there is no delivery notification and APNS messages cannot be guaranteed to be delivered at all.
The only thing you could do is program your app to report itself once it receives a message to your server.
See this Apple guide on APNS https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW1
Upvotes: 2