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

Deadly 提交于 2020-01-01 04:06:11

问题


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 device and debug builds, using the same production certificate?

My device is sending the token, but when I attempt to send a real push notification Apple servers return status 8 error, that means that device token is incorrect.


回答1:


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:




回答2:


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.




回答3:


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).




回答4:


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.



来源:https://stackoverflow.com/questions/24491719/how-do-i-make-my-debug-app-version-receive-production-push-notifications-on-ios

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!