我正在关注Udacity的这个教程,其中使用Cloud Functions for Firebase来更改引用数据的数据。 我想使用类似的功能,但是向订阅主题的用户发送推送通知。
这是我正在使用的功能。
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
exports.sendNotification = functions.database.ref('/messages/{pushId}/text').onWrite((event) => {
const data = event.data;
console.log('Message received');
if(!data.changed()){
console.log('Nothing changed');
return;
}else{
console.log(data.val());
}
const payLoad = {
notification:{
title: 'Message received',
body: 'You received a new message',
sound: "default"
}
};
const options = {
priority: "high",
timeToLive: 60*60*2
};
return admin.messaging().sendToTopic("Message_Notifications", payLoad, options);
});
查看Firebase功能日志,我可以看到在向数据库添加新值时调用该函数。我正在使用
订阅主要活动中的主题FirebaseMessaging.getInstance().subscribeToTopic("Message_Notification");
几个小时后,我可以在firebase通知控制台的主题列表中看到该主题。我从那里发送通知并且有效。
每次添加新邮件时,我都需要做些什么才能显示通知?
任何建议表示赞赏。我是Firebase的新手。因此,如果有更好的博客/帖子,请重定向我,以便我可以了解更多。
提前致谢。
答案 0 :(得分:4)
在您的Android应用中,您正在订阅"Message_Notification"
主题。
在您的脚本中,您要发送到"Message_Notifications"
主题。
在Android应用中添加s
作为主题名称,或从脚本中删除多余的s
。