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

后端 未结 5 513
清酒与你
清酒与你 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条回答
  • 2020-12-06 19:09

    With iOS7 you have a new method called application:didReceiveRemoteNotification:fetchCompletionHandler: which you probably could use for your task. From Apple's Docs:

    Implement this method if your app supports the remote-notification background mode. ... When a push notification arrives, the system displays the notification to the user and launches the app in the background (if needed) so that it can call this method. Use this method to download any data related to the push notification. When your method is done, call the block in the handler parameter.

    Unlike the application:didReceiveRemoteNotification: method, which is called only when your app is running, the system calls this method regardless of the state of your app.

    0 讨论(0)
  • 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...........

    0 讨论(0)
  • 2020-12-06 19:23

    The short answer, you can't, since APNS is one way. However, since an app can execute arbitrary code upon receipt of a notification, you can use this to say, send an http request to your own server when the notification is recieved.

    0 讨论(0)
  • 2020-12-06 19:23

    If you are using JAVAPNS to send the APNS notification, you can use the below:

    List<PushedNotification> notifications = 
    Push.combined("alert", badge, "default", "cert.p12", "certpassword", true, deviceToken);
    
    for (PushedNotification notification : notifications) {
        if (notification.isSuccessful()) { 
           //Push is successful. Do your thing...
        }
        else {
           //Push is not successful. Do your thing...
        }
     } 
    
    0 讨论(0)
  • 2020-12-06 19:24

    There are any number of reason why push notifications might not get delivered to your user, or might not be delivered in a timely manner. Apple does not provide any mechanism for you to query the status of a push notification that you have sent.

    If your app is currently running on the user's device and the user is accepting notifications for your app, you can implement the following method in your app delegate. It would be called whenever a push notification is received and in this method you could send a request back to your server to indicate the message was received. However this will only work while the user is running your app.

    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
    

    In general though, it sounds like you'e relying on push notifications for something you shouldn't. From Apple's Local and Push Notification Programming Guide:

    Important Because delivery is not guaranteed, you should not depend on the remote-notifications facility for delivering critical data to an application via the payload. And never include sensitive data in the payload. You should use it only to notify the user that new data is available.

    0 讨论(0)
提交回复
热议问题