• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

未收到 iOS 推送通知

[复制链接]
菜鸟教程小白 发表于 2022-12-13 08:52:42 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

后端 - Django

前端 - objective-c (X 代码)

我关注了this Apple Document 配置推送通知并成功完成所有步骤。

对于后端,我使用 django-push-notifications使用Django==1.7,发送消息时不会出错。

对于前端,我添加了以下几行来接收通知,

    UIUserNotificationType userNotificationTypes = (UIUserNotificationTypeAlert |

                                                    UIUserNotificationTypeBadge |

                                                    UIUserNotificationTypeSound);

    UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:userNotificationTypes

                                                                             categories:nil];

    [application registerUserNotificationSettings:settings];

    [application registerForRemoteNotifications];


- (void)applicationUIApplication *)application didRegisterForRemoteNotificationsWithDeviceTokenNSData *)deviceToken

{

    NSString *token = [[deviceToken description] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString"<>"]];

    token = [token stringByReplacingOccurrencesOfString" " withString""];

    NSLog(@"content---%@", token);

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle"DeviceToken!!!" message:token delegate:self cancelButtonTitle"Cancel" otherButtonTitles:nil];

    [alert show];

}


- (void)applicationUIApplication *)application didReceiveRemoteNotificationNSDictionary *)userInfo {

....   

}

但在此之后,我无法收到通知。我是否正确完成并配置了步骤?我的 X 代码版本是 6.3,苹果设备的 iOS 版本是 8.4。两者都应该是兼容的版本来接收通知吗?

有没有办法在 APNs 云上记录或查看进度?



Best Answer-推荐答案


使用deviceToken直接点赞

- (void)applicationUIApplication*)application didRegisterForRemoteNotificationsWithDeviceTokenNSData*)deviceToken {
    NSLog(@"My token is: %@", deviceToken);
}

您还需要确保发送推送通知。

尝试使用 this tutorial以及他们的应用程序,它将帮助您确保正确发送 Push 并且您需要修复前端。

关于未收到 iOS 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31176955/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap