首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何在Firebase Messaging Service中发送标题和正文以外的其他数据?(Node.js,安卓)

如何在Firebase Messaging Service中发送标题和正文以外的其他数据?(Node.js,安卓)
EN

Stack Overflow用户
提问于 2018-06-08 02:44:46
回答 1查看 1.1K关注 0票数 0

我正在开发一个安卓应用程序,通过使用基于Node.js的函数,我正在向安卓系统发送通知,在安卓系统中,onMessageReceived()函数用于接收数据以显示通知。现在的问题是,我想要并行发送一些字符串类型的数据给Title和Body。我应该做哪些更改?下面是我的Node.js代码

'use-strict'
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

exports.sendNotification = functions.firestore.document("Users/{user_id}/Notifications/{notification_id}").onWrite((change,context)=> {
const user_id = context.params.user_id;
const notification_id = context.params.notification_id;
console.log("User ID:"+user_id+" | Notification ID:"+notification_id);
return admin.firestore().collection("Users").doc(user_id).collection("Notifications").doc(notification_id).get().then(queryResult =>{
    const from_user_id = queryResult.data().from;
    const from_message = queryResult.data().Message;
    const from_data = admin.firestore().collection("Users").doc(from_user_id).get();
    const to_data = admin.firestore().collection("Users").doc(user_id).get();
    return Promise.all([from_data,to_data]).then(result =>{
        const from_name = result[0].data().Name;
        const to_name = result[1].data().Name;
        const token_id = result[1].data().Token_ID;
        const payload = {
            notification: {
                title: "Hey! "+from_name+" here",
                body: "Dear "+to_name+", "+from_message+", Will you help me?",
                icon: "default"
            }
        };
        return admin.messaging().sendToDevice(token_id,payload).then(result =>{
            return console.log("Notification Sent.");
        });
    });
});
});

下面是我的android代码:

public class FirebaseMsgService extends FirebaseMessagingService {


@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    super.onMessageReceived(remoteMessage);
    String messageTitle = remoteMessage.getNotification().getTitle();
    String messageBody = remoteMessage.getNotification().getBody();
    Uri sound = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.enough);
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this, getString(R.string.default_notification_channel_id))
            .setSmallIcon(R.drawable.logo)
            .setContentTitle(messageTitle)
            .setSound(sound)
            .setContentText(messageBody)
            .setStyle(new NotificationCompat.BigTextStyle()
                    .bigText(messageBody))
            .setPriority(NotificationCompat.PRIORITY_DEFAULT);
    int mNotificationID = (int) System.currentTimeMillis();
    NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    mNotificationManager.notify(mNotificationID,mBuilder.build());
}
}
EN

回答 1

Stack Overflow用户

发布于 2018-06-08 03:47:51

虽然我了解有关nodejs (或一般的js )的the,但我昨天在有效负载中传递了一个data对象,从而使其正常工作。

因此,google发出的json请求(我仍然使用GCM,但我确信FCM将是相同的,或者非常相似的有效负载)看起来是这样的:

{
  "to": "<GCM/FCM token>",
  "priority": "normal",
  "android_channel_id": -99,
  "data": {
    "title": "Some title",
    "body": "Some body",
    "more_data_one": "Some more data",
    "more_data_two": "Some more data, again!"
  }
}

但是,如果我在有效负载中同时发送datanotificationGCMServiceListener永远不会被调用,应用程序只会显示有效负载的notification部分中的内容。

通过添加data部分(从而使通知成为“静默”通知),您将负责截取消息,并使用通知构建器显示消息。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50748220

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档