例如,我正在尝试从老师向学生发送推送通知。我正在使用firebase,并且已经从每个设备上获取了该令牌,并将其保存在firebase中并保存到所需的用户,然后设置了FirebaseMessagingService。 现在,我希望能够以编程方式发送通知,例如,当老师单击列表中的学生时。 我怎么做?我一直在寻找解决方案几天,却找不到答案。 谢谢:)
答案 0 :(得分:1)
这就是我所做的。它有效。我知道,因为我整夜都在努力让这件事发挥作用。
admin.messaging().sendToDevice(token, msg)
.then(resMsg => {
console.log("Successfully sent message", resMsg);
}).catch(err => {
console.log("Error sending message", err);
})
其中令牌是来自客户端设备的 FCM 令牌。 msg 是以下结构的 JSON 负载:
const msg ={
notification: {
title: 'It\'s the last day of the week!',
body: `It's Sunday! Don't forget to refresh Dashboard with your latest activity data!`,
},
};
来源Build a transactional push notifications system using only Firebase
答案 1 :(得分:0)
要使用Firebase发送推送通知,您需要使用FCM API,可在以下位置找到它:https://firebase.google.com/docs/cloud-messaging/server。
假设您使用Java作为软件,则可以查看由Google提供的以下快速入门示例:https://github.com/firebase/quickstart-java/blob/master/messaging/src/main/java/com/google/firebase/quickstart/Messaging.java或寻找完整的库。
您只需要在应用程序中添加一些逻辑,即可使用正确的令牌和有效负载触发FCM API。