向特定设备发送通知

时间:2017-02-20 16:43:20

标签: javascript firebase polymer firebase-cloud-messaging polymerfire

显示通知很简单

function spawnNotification(theBody,theIcon,theTitle) {
  var options = {
    body: theBody,
    icon: theIcon
  }
  var n = new Notification(theTitle,options);
}

如何将其发送到特定设备(通过firebase-messaging接收的令牌)。是否有to参数,如果有,我在哪里放置它?

1 个答案:

答案 0 :(得分:1)

有一个to参数。您将它放在消息有效负载中。

其他相关文档: