How do I make my debug app version receive production push notifications on iOS?

前端 未结 4 951
情话喂你
情话喂你 2021-02-12 13:42

My server is sporting only one version of sending push notifications, and it has my production (release) push certificate.

How do I test the notifications on my debug de

相关标签:
4条回答
  • 2021-02-12 13:56

    A little late to the party, but even when all the other answers are correct, they don't really answer your question.

    The answer is: You cannot test production APNS with a debug build.

    Debug builds will always get sandbox APNS tokens.

    Release builds (ad-hoc or app store) will always get production APNS tokens.

    The logic behind that is, in order to debug an app you need to sign with a debug certificate and provisioning profile. That provisioning profile determines what APNS endpoint your app connects to.

    0 讨论(0)
  • 2021-02-12 14:09

    Maybe the workaround is send both production and sandbox push notification together. I think it may help if you want to test internal (like use AdHoc build); However, I don't think it is reasonable to deploy such a strange way in your production environment.

    0 讨论(0)
  • 2021-02-12 14:11

    If you build your app with development provisioning profile, you'll receive a sandbox device token, which is valid only in the sandbox push environment (using the sandbox push server and sandbox push certificate).

    If you build your app with production or AdHoc provisioning profile, you'll receive a production device token, which is valid only in the production push environment (using the production push server and production push certificate).

    0 讨论(0)
  • 2021-02-12 14:16

    If you want to test your app in production mode, you will need distribute the Distribution version of your app using ad hoc.

    When your application ready for submission, you create an ad hoc provisioning profile specifying an App ID that matches one or more of your apps, a set of test devices, and a single distribution certificate.

    Here is an image to illustrate how the provision profile works:

    enter image description here

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