我使用 fcm 和 local_notifications 来处理我的Flutter项目的推送通知。
使用此有效负载发送通知:
{
token: body.token,
notification = {
title: body.data.title,
body: body.data.body,
},
data: {
data: JSON.stringify(body.data),
}
}
所以当通知到来时
在应用程序终止时:两个应用程序的通知都完美显示(ios - android)
在应用程序背景上:两个应用程序(ios - android)的通知都完美显示
在应用程序前台:
android 应用程序:通知就像数据通知一样,fcm 不会像我想要的那样提醒任何东西。
ios 应用程序:当通知到来时,fcm 显示我不想显示的警报。同时 local_notifications 也在显示。
我的问题是 fcm 处理 ios 应用程序上的前台通知。当它以这种方式工作时,我无法禁用不应出现在前台的通知。
pubspec.yaml:
firebase_messaging: ^10.0.4
flutter_local_notifications: ^8.1.1+1
firebase 前台通知选项:
await instance.setForegroundNotificationPresentationOptions(alert: true, badge: true, sound: true);
当我删除 firebase 前台通知选项或将所有参数设置为 false 时,local_notifications 也无法显示任何通知。
local_notifications 前台通知选项:
instance.resolvePlatformSpecificImplementation<IOSFlutterLocalNotificationsPlugin>()?.requestPermissions(
alert: true,
badge: true,
sound: true,
);
谢谢。