any option to know if apple app get the push notification?

后端 未结 5 529
清酒与你
清酒与你 2020-12-06 18:31

I build xcode app that get push notification, the main problem is that the push notification is very critical for me. so I want to check if the push notification is delivere

5条回答
  •  萌比男神i
    2020-12-06 19:14

    There is no way to find out whether the notification was delivered to the device or no. APNS is a one way service. If there is no internet connection on the device then the APNS server will hold the last notification for some period of time which is no specified by Apple. If a new notification is sent to APNS for delivery then the old notification data is lost and replaced by the new data if its undelivered. If the notification is delivered then also the old notification data is deleted on the APNS server.

    Please go through the following link : Apple Push Notification

    Hope this helps you...........

提交回复
热议问题