推送系列三:device token

之前文章中实现推送提到device token,本文将讲述device token以下三方面:
· device token 是什么
· device token 何时用
· device token 如何变化

device token是什么

先看官网怎么说:

device token
APNs uses device tokens to identify each unique app and device combination. It also uses them to authenticate the routing of remote notifications sent to a device.

device token是APNs用于区分识别每个iOS设备和设备上不同app的一个标识符,还可以用于APNs通过它将推送消息路由到指定设备上。也就说是从信息量上看:

device token = device id + bundle id

其中device id用于识别iOS设备, bundle id用于识别iOS设备上的app。device token我们是通过设备和APNs服务器建立的长连接后,通过注册推送服务,由APNs生成后加密反馈给app的。
从定义也能看出,对于同一个设备上的不同app,我们得到的device token 是不同的。这一点官网另一处也说到:

With a TLS connection established between the device and APNs, APNs can then provide an app-specific device token to each app that registers for remote notifications.

这一点, 我在iOS10上验证了一下:每次卸载重装一个新的app不管是否是同一个,都会产生一个新的device token,所以每个app的device token必然是不同的。但是之前有很多文章说过device token是只跟设备相关的,与app无关的,也就说一台设备上所有app使用同一个token:
例如,
http://www.mednoter.com/device-token.html
360测试团队也是这样的想法:
http://blogs.360.cn/360qtest/2014/03/24/%E8%8B%B9%E6%9E%9Capns-device-token%E7%89%B9%E6%80%A7%E5%92%8C%E8%BF%87%E6%9C%9F%E6%9B%B4%E6%96%B0/

参考这篇博客 和 stackoverflow上的讨论,以及美国最大推送服务商urban airship(实测验证:飞行模式时,无法获取到token,说明每次获取token都要跟apns请求最新的,并且此时请求是app中代码发出的,apns可以得知是哪个app的请求),可以得知:

iOS7以后的系统,device token随app变化

此时apns推送到ios设备上的消息通过device token解析出来的bundle id即可投递给指定app

iOS6以前的系统,device token不随app变化

此时device token不含有bundle id信息,那是如何区分app的呢? 是因为apns和ios设备通信时通过ios设备上的证书可以区分app,当然这种方案也有bug:可能不同app之间的推送会乱。

device token 何时用

从上一片文章中,已经知道device token会贯穿于推送实现的整个过程:

  1. 注册推送服务时,APNs服务器会将device token反馈给app;
  2. app需要将device token发送给自己的服务器,用于日后自己的服务器将推送消息传给APNs;
  3. 当需要发送推送时,我们自己的服务器将组装好推送payload及device token 一并发给APNs;
  4. APNs通过device token将推送payload路由指定iOS设备的指定app上。
推送系列三:device token_第1张图片
Paste_Image.png

device token 如何变化

上面已经说到,iOS10系统上,每次卸载重装将产生新的app,如果没有卸载重装,每次请求获得的device token是不变的。
另外官网也对device token的变化进行了说明:

To protect user privacy, do not use device tokens to identify user devices. Device tokens change when the user updates the operating system and when a device’s data and settings are erased. As a result, apps should always request the current device token at launch time.

也就是说,device token会在更新系统、擦除设置重置后变化。
也有说法,device token会在一定时间后过期。

注意:

开发时,我们需要在每次app重新启动时,请求最新的device token,并同步给自己的服务器,避免device token失效造成推送失败。

你可能感兴趣的:(推送系列三:device token)