如何使用 Xcode 调试生产推送通知?
我希望能够使用 Xcode 调试源自生产环境的推送通知的处理。但是,似乎只有分发配置文件才能与 aps-environment 权利值“生产”一起使用。有没有办法使用 Xcode 在设备上调试生产消息?
I would like to be able to debug handling of push notifications that originate from the production environment using Xcode. However, it appears that only distribution provisioning profiles can be used with an aps-environment entitlement value of "production". Is there a way to debug production messages on the device using Xcode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该为此使用开发推送证书。将推送通知发送到 ssl://gateway.sandbox.push.apple.com:2195 而不是 ssl://gateway.push.apple.com:2195
有关详细信息,请参阅 Apple 文档。
You should use the development push certificates for this. Send your push notifications to ssl://gateway.sandbox.push.apple.com:2195 rather than ssl://gateway.push.apple.com:2195
Refer to Apple Documentation for more info.