如何使用功能Firebase / Firestore发送通知

时间:2019-05-09 23:33:29

标签: firebase flutter

我有一个小问题。当有人向我的应用中的帖子添加评论时,我想发送通知。我不只使用数据库存储。我现在有这样的东西。

 export const sendNotification = functions.firestore
 .document('Comments/{commentId}')
 .onCreate((snap, context) => {

        const senderUid = snap.get('idUser');
        const receiverUid = snap.get('idUserImage');
        const comment = snap.get('comment');

 });

现在如何使用文本-注释将ntification发送到receiverUid?