【发布时间】:2021-08-25 17:35:19
【问题描述】:
几周以来,我一直在尝试让推送通知在 iOS 上正常工作,但无济于事。我已经梳理了文档以验证我的配置。但是,推送通知在 Android 上可以正常工作。
我还测试了直接从 firebase 消息控制台向 IOS 发送消息,但仍然不成功。我也尝试了之前堆栈溢出帖子中的许多建议,但均未成功。
Flutter IOS FCM push notification not coming into notification bar
Flutter Push notification not displaying on IOS
https://github.com/FirebaseExtended/flutterfire/issues/1677
iOS FirebaseCloudMessaging Notifications not working in Debug / Test Flight nor Release
我在 iOS 14.6 上使用物理 iPhone 12。我正在使用的 Xcode 版本是 12.5。 Xcode配置如下。
应用委托文件的代码
import UIKit
import Flutter
import Firebase
import FirebaseMessaging
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
override func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
Messaging.messaging().apnsToken = deviceToken
super.application(application, didRegisterForRemoteNotificationsWithDeviceToken: deviceToken)
}
}
如何请求推送通知的代码
Future<void> notficationsPermission () async {
FirebaseMessaging messaging = FirebaseMessaging.instance;
NotificationSettings settings = await messaging.requestPermission(
alert: true,
announcement: true,
badge: true,
carPlay: false,
criticalAlert: true,
provisional: false,
sound: true,
);
print('User granted permission: ${settings.authorizationStatus}');
String uid = Pref.getString(Keys.USER_ID);
var databaseReference = FirebaseDatabase.instance.reference();
if(settings.authorizationStatus == AuthorizationStatus.authorized){
notficationStatus = true;
await FirebaseMessaging.instance.setForegroundNotificationPresentationOptions(
alert: true, // Required to display a heads up notification
badge: true,
sound: true,
);
}
else{
notficationStatus = false;
}
}
}
如何配置通知的片段
return admin.messaging().sendToTopic(
topicName, {
android: {
priority: "high",
},
// Add APNS (Apple) config
apns: {
payload: {
aps: {
contentAvailable: true,
},
},
headers: {
"apns-push-type": "background",
"apns-priority": "5", // Must be `5` when `contentAvailable` is set to true.
"apns-topic": "io.flutter.plugins.firebase.messaging", // bundle identifier
},
},
notification: {
title: snapshot2.val().group_name +
": new chat message",
body: name +":"+snapshot.val().message,
clickAction: "FLUTTER_NOTIFICATION_CLICK",
},
});
我的 Info.plist 中也有以下内容。
<key>FirebaseAppDelegateProxyEnabled</key>
<string>0</string>
【问题讨论】:
-
您是否尝试在通知 JSON 中添加 "content_available": true ?
-
@KathanPatel 是的,我做到了,但也没有用!
-
您是否要向特定主题发送通知?如果是,那么您是否检查过您的 iOS 设备在订阅该主题时遇到任何错误。
-
是的,我已经尝试订阅一个特定的主题,并成功推送到 Android 上。
-
@IsisCuriel 我也有同样的问题,你能解决吗?
标签: ios flutter firebase-cloud-messaging