我创建了我的react-native应用程序,并将其安装在设备上进行测试。登录(firebase身份验证)后,我将用户令牌保存到数据库中,服务器端(nodejs lambda)根据数据库中保存的令牌向用户发送通知。
我不知道如何实现这一点。请帮忙!
const registrationToken = 'HOW TO GET THIS';
const message = {
notification: {
"HI",
"THERE"
},
token: registrationToken
};
fcm.send(message, function (err, response) {
console.log('response',response);
console.log("error : "+err);
})
因此,如果我执行无服务器代码,则安装了react-native应用程序的用户需要接收消息。