设备向 APNS 发送什么唯一的设备证书

device send what unique device certificate to APNS

我有一个关于 APNs 创建设备令牌的问题。 设备令牌将发生变化,因此它必须有一些东西才能使它发生。

当设备登录 APNS 询问设备令牌它发送什么样的值? 例如:(phone 数字,时间,设备版本)

有人能帮忙吗?谢谢!

设备将其证书发送到 APNS。

Service-to-Device Connection Trust

APNs establishes the identity of a connecting device through TLS peer-to-peer authentication. (Note that the system takes care of this stage of connection trust; you do not need to implement anything yourself.) In the course of this procedure, a device initiates a TLS connection with APNs, which returns its server certificate. The device validates this certificate and then sends its device certificate to APNs, which validates that certificate.

...

APNs generates a device token using information contained in the unique device certificate. The device token contains an identifier of the device. It then encrypts the device token with a token key and returns it to the device.

Source