如何使用Firebase云功能将通知发送到多个设备令牌

时间:2019-08-17 06:00:15

标签: javascript firebase firebase-realtime-database firebase-cloud-messaging google-cloud-functions

我是Firebase Cloud Functions和JavaScript的新手,并且能够使用Firebase Cloud Functions(JavaScript)将通知发送到单个设备。现在,我正在尝试将推送通知发送到多个设备令牌,但我认为这有问题。

我想将通知发送到我的Firebase数据库中的这些设备令牌:

/receivers
      /event1
           /uid1: device_token1
           /uid2: device_token2
           /uid3: device_token3
           /uid4: device_token4

到目前为止,这是我的代码,但是无法正常工作。

exports.sendSOSNotif = functions.database.ref('/SOSNotifs/{sosId}').onWrite((data, context) => {

  const eventId=data.after.child("eventId").val();
  const uid=data.after.child("uid").val();
  const displayName=data.after.child("displayName").val();
  const photoUrl=data.after.child("photoUrl").val();
  const status=data.after.child("status").val();

  console.log("eventId:", eventId);
  console.log("displayName:", displayName);
  console.log("uid", uid);

  const payload = {
    notification: {
        title: "SOS Alert",
        body: displayName + " sent an alert!",
        sound: "default"
    },

    data: {
        eventId: eventId,
        displayName: displayName
    }
  };

return Promise.all([admin.database().ref("/receivers/event1").once('value')]).then(results => {
const tokens = results[0];
if (!tokens.hasChildren()) return null;

const tokensList = Object.keys(tokens.val());
return admin.messaging().sendToDevice(tokensList, payload);

});
});

1 个答案:

答案 0 :(得分:0)

首先,如果这是组织数据库的方式,则不应添加如下所示的令牌。单个uid可能有多个令牌

/receivers
  /event1
       /uid1: device_token1
       /uid2: device_token2
       /uid3: device_token3
       /uid4: device_token4

为了向多个UID发送通知,我编写了一个脚本here

还要更新有关您所面临的问题的问题。