使用Firebase云函数向特定用户发送推送通知的方法

3
我正在使用Firebase作为我的Android应用程序的后端,并且非常新手地使用Firebase云函数。我想知道当事件发生时,如何向特定用户发送推送通知。
例如,当数据库中的adminName节点发生写入时,我该如何向以下代码中的uId用户发送推送通知:
exports.sendNotification = functions.database.ref('/users/{uId}/groups/{adminName}')
    .onWrite(event => {

    // Grab the current value of what was written to the Realtime Database.
    var eventSnapshot = event.data;
    var str1 = "Author is ";
    var str = str1.concat(eventSnapshot.child("author").val());
    console.log(str);

    var topic = "android";
    var payload = {
        data: {
            title: eventSnapshot.child("title").val(),
            author: eventSnapshot.child("author").val()
        }
    };

    // Send a message to devices subscribed to the provided topic.
    return admin.messaging().sendToTopic(topic, payload)
        .then(function (response) {
            // See the MessagingTopicResponse reference documentation for the
            // contents of response.
            console.log("Successfully sent message:", response);
        })
        .catch(function (error) {
            console.log("Error sending message:", error);
        });
    });

你必须拥有该特定用户的注册令牌并使用sendToDevice - AL.
1个回答

1
进行以下更改。它对我有效。
const functions = require('firebase-functions');
const admin = require('firebase-admin');

admin.initializeApp(functions.config().functions);

var newData;

exports.myTrigger = functions.firestore.document('TestCollection/{id}').onWrite(async (snapshot, context) => {
//

if (snapshot.empty) {
    console.log('No Devices');
    return;
}

newData = snapshot.data();

const deviceIdTokens = await admin
    .firestore()
    .collection('DeviceIDTokens')
    .get();

var tokens = [];

for (var token of deviceIdTokens.docs) {
    tokens.push(token.data().device_token);
}
var payload = {
    notification: {
        title: 'Push Title',
        body: 'Push Body',
        sound: 'default',
    },
    data: {
        push_key: 'Push Key Value',
        key1: newData.data,
    },
};

try {
    const response = await admin.messaging().sendToDevice(tokens, payload);
    console.log('Notification sent successfully');
} catch (err) {
    console.log(err);
}
});

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接