gpt4 book ai didi

ios - iOS 中的 FCM 集成问题

转载 作者:行者123 更新时间:2023-11-30 12:49:59 27 4
gpt4 key购买 nike

我们正在遵循 FCM link 通过 cocoapods 的集成步骤我们可以通过以下行接收 token :

if let refreshedToken = FIRInstanceID.instanceID().token()

但是当我们尝试通过以下代码连接到 FCM 时:

    func connectToFcm() {
FIRMessaging.messaging().connect { (error) in
if error != nil {
print("Unable to connect with FCM. \(error)")

print("Registration to GCM failed with error: \(error?.localizedDescription)")
let userInfo = ["error": error?.localizedDescription]
NotificationCenter.default.post(
name: Notification.Name(rawValue: self.registrationKey), object: nil, userInfo: userInfo)

} else {
print("Connected to FCM.")
}
}
}

我们收到以下错误:

Unable to connect with FCM. Optional(Error Domain=com.google.fcm Code=2001 "(null)")

可能是什么问题?

最佳答案

非常简单,如果 FCM 已经连接,请勿再次尝试连接 - 这会造成困惑。

所以我只有一个标志,如果 FCM 已经连接,则避免连接 FCM

关于ios - iOS 中的 FCM 集成问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41121470/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com