Search code examples
javascriptfirebasepolymerfirebase-cloud-messagingpolymerfire

Sending notification to a particular device


Displaying a notification is easy

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

How do I send it to a particular device(token received via firebase-messaging). Is there a to parameter and if there is, where do I place it?


Solution

  • There is a to parameter. You place it in your message payload.

    Additional related docs: