我有一个原生 ios 应用程序,它启用了 FCM。我已将证书上传到 firebase 并从 appdelegate 将 GoogleService-Info.plist 添加到我的项目中
-(void)applicationUIApplication *)application
didRegisterForRemoteNotificationsWithDeviceTokenNSData *)deviceToken
{
[FIRMessaging messaging].APNSToken = deviceToken;
NSLog(@"FCM deviceToken : %@", deviceToken);
}
And I have received token "FCM deviceToken : <076bc1b2 31493038
08da0351 8d272982 d04f7171 46f6e619 31e89403 1457fc19>"
我已在控制台中尝试使用此 token ,但显示失败。
这就是我从 firebase 控制台得到的
Best Answer-推荐答案 strong>
嗨@Anju 你需要使用
-(void)applicationUIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken (NSData *)deviceToken{
[FIRMessaging messaging].APNSToken = deviceToken;NSString *fcmToken = [FIRMessaging messaging].FCMToken;
NSLog(@"FCM deviceToken : %@", deviceToken);
}
FCM代币
关于IOS - 未从 Firebase 控制台收到 FCM 推送通知,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/47349320/
|