gpt4 book ai didi

ios - 如何分离 iOS APNS 通知的沙箱和生产设备 token

转载 作者:可可西里 更新时间:2023-11-01 03:10:28 24 4
gpt4 key购买 nike

我不小心将沙箱和生产设备 token 混合在同一个数据库表中。这会导致一些安装生产应用程序的设备无法接收推送通知。

如何从数据库表中分离沙箱 token 和生产 token ?非常感谢您的帮助!!谢谢!

最佳答案

您可能应该使用某种 UDID(您可以通过散列捆绑 ID 和设备的 MAC 地址来创建您自己的)和第二个字段来指示 token 是“开发”还是“开发” “生产” token 。第三个字段可以是实际的 token 。

在您的应用程序委托(delegate)的 didRegisterForRemoteNotificationsWithDeviceToken 委托(delegate)方法中,您可以添加逻辑来确定您的应用程序是在开发模式还是生产模式下运行,并根据应用程序运行的 UDID 和“模式”使用设备 token 更新您的数据库中。

您的代码可能如下所示:

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 
{
// Update the device token record in our database
#if !defined (CONFIGURATION_Distribution)
// Update the database with our development device token
#endif

#if defined (CONFIGURATION_Distribution)
// Update the database with our production device token
#endif
}

为此,您需要转到“项目”->“build设置”。在预处理器宏部分键入 CONFIGURATION_ 并按 Enter。这应该为您的每个构建配置创建一个预处理器宏。在这种情况下,我的构建配置是 AdHoc、Debug、Distribution 和 Release。

它为我创建了 CONFIGURATION_AdHoc、CONFIGURATION_Debug、CONFIGURATION_Distribution 和 CONFIGURATION_Release。

关于ios - 如何分离 iOS APNS 通知的沙箱和生产设备 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12637385/

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