需要检查订阅是否正确,并确保服务器向 Firebase 发送正确格式的消息。具体来说,应在服务端添加以下参数:
"notification": { "title": "Notification Title", "body": "Notification Body" },
同时,在客户端的订阅回调中添加以下代码:
if (remoteMessage.getNotification() != null) { String title = remoteMessage.getNotification().getTitle(); String body = remoteMessage.getNotification().getBody(); // Handle the notification }
这样就可以正确处理订阅的实时通知。