我从testflight下载应用程序然后我尝试登录我得到设备令牌nil .. 请给我解决方案。
答案 0 :(得分:0)
您使用什么功能来获取设备令牌?你可能犯了一个小错误。复制粘贴代码会有所帮助。
// Called when APNs has assigned the device a unique token
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
// Convert token to string
let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
// Print it to console
print("APNs device token: \(deviceTokenString)")
}