显示通知很容易
function spawnNotification(theBody,theIcon,theTitle) {
var options = {
body: theBody,
icon: theIcon
}
var n = new Notification(theTitle,options);
}
如何将其发送到特定设备(通过Firebase消息接收的令牌)。是否有一个
to
参数,如果有,我应该在哪里放置它? 最佳答案
有一个to
参数。您将其放在消息有效负载中。
其他相关文档:
https://firebase.google.com/docs/cloud-messaging/server
https://firebase.google.com/docs/cloud-messaging/send-message
关于javascript - 将通知发送到特定设备,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42349934/