本文介绍了推入门通过Adhoc建立合作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我下面上设置教程推iOS版在这里:
它为开发版本,也就是说,在使用开发者证书调试模式下的应用程序。我可以用随附的simplepush.php脚本将消息发送到一台设备。
我不能得到这个工作,并即席建立 - 这是使用分配证书建
的我需要什么在simplepush.php更改与即席建立,使这项工作?的
我改的 gateway.sandbox.push.apple.com:2195 为 gateway.push.apple.com:2195 ,因为我认为沙箱应该用于发展/调试版本,并即席与AppStore的建立应该使用gateway.push.apple.com:2195。
我得到这个答复,但没有消息被传递到由设备令牌指定的设备。
解决方案
Please be aware of the device token-ID
,
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
UIAlertView *alert= [[UIAlertView alloc]initWithTitle: deviceToken message:Nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
}
这篇关于推入门通过Adhoc建立合作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!