How long do Apple retain notifications to be pushed to iOS devices until they expire?iOS Enterprise developer Account: apns certificate for push notificationHow do push notifications work from a networking point of view?Can iOS receive gmail's instant (within several seconds) push notification for email?Does the permissions popup for Push Notification in iOS refer to both local and remote (APNs) notifications?Mac OS X Server Mail services and Push Notifications to iOS devicesApple Push Notification reliablityDifference between “allow notifications” toggle and dragging to “do not include”Make app notifications ring as loudly as the phoneAdvanced configuration for email notifications about Apple Developer Certificates expirationiOS app using polling to retrieve newest data

Is killing off one of my queer characters homophobic?

How can I legally visit the United States Minor Outlying Islands in the Pacific?

Why use null function instead of == []

How did John Lennon tune his guitar

How to fit a linear model in the Bayesian way in Mathematica?

Why didn't Al Powell investigate the lights at the top of the building?

Alternatives to using writing paper for writing practice

What exactly is the Tension force?

Behavior of the zero and negative/sign flags on classic instruction sets

What is the German equivalent of 干物女 (dried fish woman)?

What impact would a dragon the size of Asia have on the environment?

Why is dry soil hydrophobic? Bad gardener paradox

Why is the collector feedback bias popular in electret-mic preamp circuits?

Can a pizza stone be fixed after soap has been used to clean it?

Deep Learning based time series forecasting

Remove intersect line for one circle using venndiagram2sets

Is `curl something | sudo bash -` a reasonably safe installation method?

Can I activate an iPhone without an Apple ID?

Absconding a company after 1st day of joining

Postgresql numeric and decimal is automatically rounding off

Why limit to revolvers?

Are L-functions uniquely determined by their values at negative integers?

how to generate correct single and double quotes in tex

Is a public company able to check out who owns its shares in very detailed format?



How long do Apple retain notifications to be pushed to iOS devices until they expire?


iOS Enterprise developer Account: apns certificate for push notificationHow do push notifications work from a networking point of view?Can iOS receive gmail's instant (within several seconds) push notification for email?Does the permissions popup for Push Notification in iOS refer to both local and remote (APNs) notifications?Mac OS X Server Mail services and Push Notifications to iOS devicesApple Push Notification reliablityDifference between “allow notifications” toggle and dragging to “do not include”Make app notifications ring as loudly as the phoneAdvanced configuration for email notifications about Apple Developer Certificates expirationiOS app using polling to retrieve newest data






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















If an app attempts to send a notification to an iOS device that is either powered off or has no network connectivity push notifications need to be kept in queue.



For how long does Apple retain notifications to allow the device time to contact the APNS servers?










share|improve this question






























    4















    If an app attempts to send a notification to an iOS device that is either powered off or has no network connectivity push notifications need to be kept in queue.



    For how long does Apple retain notifications to allow the device time to contact the APNS servers?










    share|improve this question


























      4












      4








      4








      If an app attempts to send a notification to an iOS device that is either powered off or has no network connectivity push notifications need to be kept in queue.



      For how long does Apple retain notifications to allow the device time to contact the APNS servers?










      share|improve this question
















      If an app attempts to send a notification to an iOS device that is either powered off or has no network connectivity push notifications need to be kept in queue.



      For how long does Apple retain notifications to allow the device time to contact the APNS servers?







      ios notifications push apns






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 4 hours ago









      jksoegaard

      23.9k1 gold badge29 silver badges58 bronze badges




      23.9k1 gold badge29 silver badges58 bronze badges










      asked 8 hours ago









      elliott94elliott94

      1673 bronze badges




      1673 bronze badges




















          2 Answers
          2






          active

          oldest

          votes


















          3














          It depends on the service that sent the notification in the first place. The service (i.e. the backend system that supports an app such as Facebook or any other app) sends their notifications to Apple's push notification service over a HTTP/2-based API. In that API it sets a parameter known as "apns-expiration", which determines how long time Apple's push notification service will queue the notification to be delivered when the device is online again.



          The "apns-expiration" parameter can be set to 0, which means that it won't be queued at all.



          If set to a higher number than 0 that is the number of seconds, the message will be queued.



          Finally, the service can choose not to send the parameter at all, or send it as -1 (negative). This means it should be queued for as long as possible.



          The maximium queue time is not infinite, but is chosen by Apple - and seemingly not documented anywhere. However, PC World described in 2009 that the maximum at that time was 28 days:



          https://www.pcworld.com/article/167652/the_limits_of_apples_push_notification_for_the_iphone.html






          share|improve this answer






























            0














            What you are referring to is covered under Quality of Service component of Apple push notifications. It's addressed in the following linked Apple Developer documentation:



            • Local and Remote Notification Programming Guide - Quality of Service, Store-and-Forward, and Coalesced Notifications


            Apple Push Notification service includes a Quality of Service (QoS) component that performs a store-and-forward function. If APNs attempts to deliver a notification and the destination device is offline, APNs stores the notification for a limited period of time and delivers it when the device becomes available again. This component stores only the most recent notification per device and per app. If a device is offline, sending a notification request targeting that device causes the previous request to be discarded. If a device remains offline for a long time, all its stored notifications in APNs are discarded.




            and



            • Communicating with APNs - HTTP/2 Request to APNs


            apns-expiration



            A UNIX epoch date expressed in seconds (UTC). This header identifies the date when the notification is no longer valid and can be discarded.



            If this value is nonzero, APNs stores the notification and tries to deliver it at least once, repeating the attempt as needed if it is unable to deliver the notification the first time. If the value is 0, APNs treats the notification as if it expires immediately and does not store the notification or attempt to redeliver it.





            Referring the Local and Remote Notification Programming Guide should address your concerns related to Apple push notifications.






            share|improve this answer


































              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              3














              It depends on the service that sent the notification in the first place. The service (i.e. the backend system that supports an app such as Facebook or any other app) sends their notifications to Apple's push notification service over a HTTP/2-based API. In that API it sets a parameter known as "apns-expiration", which determines how long time Apple's push notification service will queue the notification to be delivered when the device is online again.



              The "apns-expiration" parameter can be set to 0, which means that it won't be queued at all.



              If set to a higher number than 0 that is the number of seconds, the message will be queued.



              Finally, the service can choose not to send the parameter at all, or send it as -1 (negative). This means it should be queued for as long as possible.



              The maximium queue time is not infinite, but is chosen by Apple - and seemingly not documented anywhere. However, PC World described in 2009 that the maximum at that time was 28 days:



              https://www.pcworld.com/article/167652/the_limits_of_apples_push_notification_for_the_iphone.html






              share|improve this answer



























                3














                It depends on the service that sent the notification in the first place. The service (i.e. the backend system that supports an app such as Facebook or any other app) sends their notifications to Apple's push notification service over a HTTP/2-based API. In that API it sets a parameter known as "apns-expiration", which determines how long time Apple's push notification service will queue the notification to be delivered when the device is online again.



                The "apns-expiration" parameter can be set to 0, which means that it won't be queued at all.



                If set to a higher number than 0 that is the number of seconds, the message will be queued.



                Finally, the service can choose not to send the parameter at all, or send it as -1 (negative). This means it should be queued for as long as possible.



                The maximium queue time is not infinite, but is chosen by Apple - and seemingly not documented anywhere. However, PC World described in 2009 that the maximum at that time was 28 days:



                https://www.pcworld.com/article/167652/the_limits_of_apples_push_notification_for_the_iphone.html






                share|improve this answer

























                  3












                  3








                  3







                  It depends on the service that sent the notification in the first place. The service (i.e. the backend system that supports an app such as Facebook or any other app) sends their notifications to Apple's push notification service over a HTTP/2-based API. In that API it sets a parameter known as "apns-expiration", which determines how long time Apple's push notification service will queue the notification to be delivered when the device is online again.



                  The "apns-expiration" parameter can be set to 0, which means that it won't be queued at all.



                  If set to a higher number than 0 that is the number of seconds, the message will be queued.



                  Finally, the service can choose not to send the parameter at all, or send it as -1 (negative). This means it should be queued for as long as possible.



                  The maximium queue time is not infinite, but is chosen by Apple - and seemingly not documented anywhere. However, PC World described in 2009 that the maximum at that time was 28 days:



                  https://www.pcworld.com/article/167652/the_limits_of_apples_push_notification_for_the_iphone.html






                  share|improve this answer













                  It depends on the service that sent the notification in the first place. The service (i.e. the backend system that supports an app such as Facebook or any other app) sends their notifications to Apple's push notification service over a HTTP/2-based API. In that API it sets a parameter known as "apns-expiration", which determines how long time Apple's push notification service will queue the notification to be delivered when the device is online again.



                  The "apns-expiration" parameter can be set to 0, which means that it won't be queued at all.



                  If set to a higher number than 0 that is the number of seconds, the message will be queued.



                  Finally, the service can choose not to send the parameter at all, or send it as -1 (negative). This means it should be queued for as long as possible.



                  The maximium queue time is not infinite, but is chosen by Apple - and seemingly not documented anywhere. However, PC World described in 2009 that the maximum at that time was 28 days:



                  https://www.pcworld.com/article/167652/the_limits_of_apples_push_notification_for_the_iphone.html







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 7 hours ago









                  jksoegaardjksoegaard

                  23.9k1 gold badge29 silver badges58 bronze badges




                  23.9k1 gold badge29 silver badges58 bronze badges























                      0














                      What you are referring to is covered under Quality of Service component of Apple push notifications. It's addressed in the following linked Apple Developer documentation:



                      • Local and Remote Notification Programming Guide - Quality of Service, Store-and-Forward, and Coalesced Notifications


                      Apple Push Notification service includes a Quality of Service (QoS) component that performs a store-and-forward function. If APNs attempts to deliver a notification and the destination device is offline, APNs stores the notification for a limited period of time and delivers it when the device becomes available again. This component stores only the most recent notification per device and per app. If a device is offline, sending a notification request targeting that device causes the previous request to be discarded. If a device remains offline for a long time, all its stored notifications in APNs are discarded.




                      and



                      • Communicating with APNs - HTTP/2 Request to APNs


                      apns-expiration



                      A UNIX epoch date expressed in seconds (UTC). This header identifies the date when the notification is no longer valid and can be discarded.



                      If this value is nonzero, APNs stores the notification and tries to deliver it at least once, repeating the attempt as needed if it is unable to deliver the notification the first time. If the value is 0, APNs treats the notification as if it expires immediately and does not store the notification or attempt to redeliver it.





                      Referring the Local and Remote Notification Programming Guide should address your concerns related to Apple push notifications.






                      share|improve this answer





























                        0














                        What you are referring to is covered under Quality of Service component of Apple push notifications. It's addressed in the following linked Apple Developer documentation:



                        • Local and Remote Notification Programming Guide - Quality of Service, Store-and-Forward, and Coalesced Notifications


                        Apple Push Notification service includes a Quality of Service (QoS) component that performs a store-and-forward function. If APNs attempts to deliver a notification and the destination device is offline, APNs stores the notification for a limited period of time and delivers it when the device becomes available again. This component stores only the most recent notification per device and per app. If a device is offline, sending a notification request targeting that device causes the previous request to be discarded. If a device remains offline for a long time, all its stored notifications in APNs are discarded.




                        and



                        • Communicating with APNs - HTTP/2 Request to APNs


                        apns-expiration



                        A UNIX epoch date expressed in seconds (UTC). This header identifies the date when the notification is no longer valid and can be discarded.



                        If this value is nonzero, APNs stores the notification and tries to deliver it at least once, repeating the attempt as needed if it is unable to deliver the notification the first time. If the value is 0, APNs treats the notification as if it expires immediately and does not store the notification or attempt to redeliver it.





                        Referring the Local and Remote Notification Programming Guide should address your concerns related to Apple push notifications.






                        share|improve this answer



























                          0












                          0








                          0







                          What you are referring to is covered under Quality of Service component of Apple push notifications. It's addressed in the following linked Apple Developer documentation:



                          • Local and Remote Notification Programming Guide - Quality of Service, Store-and-Forward, and Coalesced Notifications


                          Apple Push Notification service includes a Quality of Service (QoS) component that performs a store-and-forward function. If APNs attempts to deliver a notification and the destination device is offline, APNs stores the notification for a limited period of time and delivers it when the device becomes available again. This component stores only the most recent notification per device and per app. If a device is offline, sending a notification request targeting that device causes the previous request to be discarded. If a device remains offline for a long time, all its stored notifications in APNs are discarded.




                          and



                          • Communicating with APNs - HTTP/2 Request to APNs


                          apns-expiration



                          A UNIX epoch date expressed in seconds (UTC). This header identifies the date when the notification is no longer valid and can be discarded.



                          If this value is nonzero, APNs stores the notification and tries to deliver it at least once, repeating the attempt as needed if it is unable to deliver the notification the first time. If the value is 0, APNs treats the notification as if it expires immediately and does not store the notification or attempt to redeliver it.





                          Referring the Local and Remote Notification Programming Guide should address your concerns related to Apple push notifications.






                          share|improve this answer















                          What you are referring to is covered under Quality of Service component of Apple push notifications. It's addressed in the following linked Apple Developer documentation:



                          • Local and Remote Notification Programming Guide - Quality of Service, Store-and-Forward, and Coalesced Notifications


                          Apple Push Notification service includes a Quality of Service (QoS) component that performs a store-and-forward function. If APNs attempts to deliver a notification and the destination device is offline, APNs stores the notification for a limited period of time and delivers it when the device becomes available again. This component stores only the most recent notification per device and per app. If a device is offline, sending a notification request targeting that device causes the previous request to be discarded. If a device remains offline for a long time, all its stored notifications in APNs are discarded.




                          and



                          • Communicating with APNs - HTTP/2 Request to APNs


                          apns-expiration



                          A UNIX epoch date expressed in seconds (UTC). This header identifies the date when the notification is no longer valid and can be discarded.



                          If this value is nonzero, APNs stores the notification and tries to deliver it at least once, repeating the attempt as needed if it is unable to deliver the notification the first time. If the value is 0, APNs treats the notification as if it expires immediately and does not store the notification or attempt to redeliver it.





                          Referring the Local and Remote Notification Programming Guide should address your concerns related to Apple push notifications.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited 7 hours ago

























                          answered 7 hours ago









                          Nimesh NeemaNimesh Neema

                          22.6k9 gold badges59 silver badges91 bronze badges




                          22.6k9 gold badges59 silver badges91 bronze badges













                              Popular posts from this blog

                              ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

                              Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

                              19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу