iOS - APNS - 推送不接收

时间:2017-03-04 00:21:05

标签: ios apple-push-notifications

几天前,我续签了apns证书。应用程序商店中发布的应用程序似乎一切正常。 一天后,我创建了一个adhoc IPA,但这次推送通知没有到达。哪个是奇怪的,因为没有错误日志。 在服务器中我正在使用https://pypi.python.org/pypi/apns-client/0.2.1

我做错了什么?

更新

我正在使用工具测试我的pem文件和设备令牌根据此工具成功发送消息。但是我的iphone没有收到推送通知。

1 个答案:

答案 0 :(得分:0)

我的问题没有完全解决,但我发现了adhoc IPA和调试模式的不同行为。

我在令牌注册失败时制作了测试代码。

- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
    NSLog(@"Failed to get token, error: %@", error);

    UIAlertView *alert = [[UIAlertView alloc]
                          initWithTitle:@"APNS Error"
                          message:[error localizedDescription]
                          delegate:self
                          cancelButtonTitle:@"Cancel"
                          otherButtonTitles:@"OK", nil];
    [alert show];
}

这让我知道我的项目设置存在问题。但正如我所说,即使我的项目设置错误,推送通知也会在很多设备上到达而没有问题。