apple push notification with sound buzzing at regular interval

后端 未结 1 799
春和景丽
春和景丽 2021-01-26 08:59

I have a small but tricky question over apple push notification payload on iOS.

From what I know the push notification payload can have sound (length <= 30 seconds),

相关标签:
1条回答
  • 2021-01-26 09:48

    Yes, it is. This is how you could implement that:

    1. Register device for push notification
    2. Send out a push message with ref to a sound every 30-60 seconds
    3. Invalidate each message after 30-60 seconds, making room for the new one
    4. When user re-opens the app, register the app as re-opened to the server and stop sending out push notifications

    I do not know how this would look in the notification center, but you can test and have a look :)

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