在应用程序关闭时,是否可以通过点击Firebase Cloud Messaging发送给Flutter应用程序(Android和iOS(的通知来打开链接?我正在使用旧版HTTP请求。
这是可能的!您需要为后台服务编写监听器,它实际上已经在firebase_messaging包中了。然后,您需要为FCM通知中的启动url编写函数。学习FLUTTER_NOTIFICATION_CLICK
例如:
FirebaseMessaging.onMessageOpenedApp.listen((RemoteMessage message) {
print('A new onMessageOpenedApp event was published!');
currentBottomIndex = 2;
goHome(context);
});