gpt4 book ai didi

ios - 使用生产服务器证书向开发应用程序发送推送通知

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:06:07 25 4
gpt4 key购买 nike

我们正在构建支持推送通知的应用程序。至此,我们使用沙盒模式实现了带开发证书的推送服务器。当应用程序在应用程序商店发布时,Web 服务器将需要使用生产证书切换到生产模式。问题是,如果我们将服务器切换到生产环境,应用程序的开发实例是否仍会收到推送通知?如果不是,应该怎么做才能同时获得关于生产和开发的推送通知?

最佳答案

当您切换到生产证书(并连接到 APNS 生产服务器)时,开发实例将不会收到推送通知。此外,尝试向开发设备 token 发送通知将导致错误(因为开发设备 token 在生产环境中无效)。在将服务器切换到生产模式之前,您应该从数据库中删除开发设备 token 。这将为您省去很多麻烦。

这是来自 here 的相关引述:

The most common problem is an invalid device token. If the token came from the sandbox environment, such as when you are testing a development build in house, you can't send it to the production push service. Each push environment will issue a different token for the same device or computer. If you do send a device token to the wrong environment, the push service will see that as an invalid token and discard the notification.

Note: It is recommended that you run a separate instance of your provider for each push environment to avoid the problem of sending device tokens to the wrong environment.

如果您确实需要继续支持应用程序开发实例的推送通知,则必须在您的数据库中区分开发和生产设备 token (即标记哪些设备 token 是开发 token ,哪些是生产 token )。您必须使用不同的证书维护与生产和沙盒 APNS 服务器的单独连接,并且在向设备 token 发送通知时必须使用正确的连接(基于它在数据库中的标记方式)。

关于ios - 使用生产服务器证书向开发应用程序发送推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22328919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com