我有一个安卓应用,可以成功接收来自 Firebase 控制台的通知。我现在打算构建一个 nodejs 服务器,我们可以在其中发送这些通知以将日志记录保存到 firebase 控制台中,但是,节点.js库"firebase-admin"似乎仅支持发送到单个设备 ID 或主题,而不是根据控制台发送到所有设备。
所以我做了一个nodejs服务来发送到主题"all",并试图改变android以接收这些通知,但是我的设备上没有收到来自这个nodejs服务器的通知。
这是我的服务器代码:
var admin = require("firebase-admin");
var serviceAccount = require("./firebase-privatekey.json");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: "https://myapp-android-xxx.firebaseio.com"
});
var payload = {
notification: {
title: "Account Deposit",
body: "A deposit to your savings account has just cleared."
},
data: {
account: "Savings",
balance: "$3020.25"
},
topic: "all",
};
admin.messaging().send(payload)
.then(function(response) {
console.log("Successfully sent message:", response);
})
.catch(function(error) {
console.log("Error sending message:", error);
});
这是与控制台通知一起使用的安卓代码:
public class MyNotificationService extends FirebaseMessagingService {
public MyNotificationService() {
}
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d("Firebase", "From: " + remoteMessage.getFrom());
// Check if message contains a data payload.
if (remoteMessage.getData().size() > 0) {
Log.d("Firebase", "Message data payload: " + remoteMessage.getData());
handleNow(remoteMessage.getData(), remoteMessage.getNotification().getBody());
}
// Check if message contains a notification payload.
if (remoteMessage.getNotification() != null) {
Log.d("Firebase", "Message Notification Body: " + remoteMessage.getNotification().getBody());
}
}
public void handleNow(Map<String, String> data, String title) {
NotificationManager notificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
int notificationId = 1;
String channelId = "channel-01";
String channelName = "Channel Name";
int importance = NotificationManager.IMPORTANCE_HIGH;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
NotificationChannel mChannel = new NotificationChannel(
channelId, channelName, importance);
notificationManager.createNotificationChannel(mChannel);
}
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(getApplicationContext(), channelId)
.setSmallIcon(R.drawable.myapp_notification_icon)
.setBadgeIconType(R.drawable.myapp_notification_icon)
.setContentTitle(title)
.setContentText(data.get("information"));
notificationManager.notify(notificationId, mBuilder.build());
}
}
这是新的(附加未替换(代码,旨在接收主题消息:
@Override
protected void onCreate(Bundle savedInstanceState) {
//other code...
FirebaseMessaging.getInstance().subscribeToTopic("all")
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if (task.isSuccessful()) {
System.out.println("win");
} else {
System.out.println("fail");
}
}
});
}
nodejs 服务器告诉我这是一条消息的成功发送,但获胜或失败消息上的断点永远不会在 android 上命中
我遇到了同样的问题。我找到的解决方案是添加:
<service
android:name=".java.MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
AndroidManifest.xml
和:
@Override
public void onDeletedMessages() {
super.onDeletedMessages();
}
到MyFirebaseMessagingService
.
根据文档。
覆盖已删除的邮件
在某些情况下,FCM 可能无法递送邮件。这发生在以下情况下 您的应用在> 连接时的特定设备,或者设备尚未连接 在一个多月内连接到FCM。在这些情况下,您可以 接收对 FirebaseMessagingService.onDeletedMessages(( 的回调 当应用实例收到此回调时,它应执行完整的回调 与应用服务器同步。如果您尚未向应用发送消息 该设备在过去 4 周内,FCM 不会致电 onDeletedMessages((。