从 APNS 接收的设备令牌的生命周期
当我们向 APNS 注册设备以进行推送通知时,我们会收到一个设备令牌。 APNS 上的此令牌是否有任何到期时间?是否有任何时间表,之后 APNS 将丢弃该令牌?
When we register a device with APNS for push notification we receive a device token back. Is there any expiry associated with this token on APNS? Is there any timeline after which APNS will discard that token?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
令牌确实会不时发生变化,这就是为什么 APNS 有一个反馈服务器来提醒您有关不起作用的令牌,以便您可以将它们从数据库中删除。此外,APNS 不会记录设备令牌,您可以将它们上传到服务器上的数据库。
The tokens do change from time to time, which is why APNS has a feedback server to alert you about tokens that don't work so you can remove them from your database. Also, APNS doesn't record the device tokens, it is up to you to upload them to a database on your server.