0

我需要检查苹果推送通知到多个设备。我正在使用 JavaPNS,推送工作正常。但我只有一个设备令牌。我怎么能确定实时(当会有数百万个设备令牌 - 设备时),推送会正常工作。

我已经看到了这个: 负载测试苹果推送通知服务器应用程序 ,但不确定我是否完全理解它,或者它是否是正确的方法。

4

1 回答 1

0
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
    {
        self.mDeviceToken = deviceToken;

        //Removing the brackets from the device token
        NSString *tokenString = [[deviceToken description] stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]];

        NSLog(@"Push Notification tokenstring is %@",tokenString);

    }   

当您获得令牌时,您应该使用 Web 服务将此令牌发送到您的数据库。这样,您将获得安装您的应用程序的所有令牌。

于 2013-06-07T12:46:32.473 回答