<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How - HTTP publisher to Firebase Cloud Messenger?]]></title><description><![CDATA[<p dir="auto">Hi, does anyone know the correct HTTP Sender properties to POST datapoints to Firebase Cloud Messenger?</p>
<p dir="auto">I am stuck.</p>
]]></description><link>https://forum.mango-os.com/topic/3137/how-http-publisher-to-firebase-cloud-messenger</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 16:59:55 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/3137.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 10 Dec 2017 06:51:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How - HTTP publisher to Firebase Cloud Messenger? on Mon, 18 Dec 2017 16:08:31 GMT]]></title><description><![CDATA[<p dir="auto">Nice, good to know! Thanks for sharing!</p>
]]></description><link>https://forum.mango-os.com/post/16567</link><guid isPermaLink="true">https://forum.mango-os.com/post/16567</guid><dc:creator><![CDATA[phildunlap]]></dc:creator><pubDate>Mon, 18 Dec 2017 16:08:31 GMT</pubDate></item><item><title><![CDATA[Reply to How - HTTP publisher to Firebase Cloud Messenger? on Sun, 17 Dec 2017 01:22:34 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Phil,</p>
<p dir="auto">HTTP Publisher actually works perfectly for Firebase. Took some playing with Postman, but it turns out to be easy..</p>
<p dir="auto"><img src="https://camo.nodebb.org/34d408e21a4bfc368441edc41642384a2eb4e14a?url=https%3A%2F%2Fi.imgur.com%2FbJH5wrp.jpg" alt="0_1513469357051_Image 1.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">But using HttpBuilder in a script is a lot more flexible.</p>
]]></description><link>https://forum.mango-os.com/post/16562</link><guid isPermaLink="true">https://forum.mango-os.com/post/16562</guid><dc:creator><![CDATA[Balistar]]></dc:creator><pubDate>Sun, 17 Dec 2017 01:22:34 GMT</pubDate></item><item><title><![CDATA[Reply to How - HTTP publisher to Firebase Cloud Messenger? on Mon, 11 Dec 2017 16:42:39 GMT]]></title><description><![CDATA[<p dir="auto">Hi Balistar,</p>
<p dir="auto">The HTTP Publisher was not crafted for Firebase, so you may have some hurdles trying to get that working.</p>
<p dir="auto">Have you considered the HttpBuilder in the scripting environment? This way you can authenticate if need be, but it would enable you to do something like...</p>
<pre><code>HttpBuilder.post("sptth://firebase", 
  { "authenticationHeader": "value!" },
  {
  "message":{
    "token" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
    "notification" : {
      "body" : "This is an FCM notification message!",
      "title" : "FCM Message",
      }
   }
}).err(function(status, headers, content) {
  throw content;
}).resp(function(status, headers, content) {
  /* Do any work you need for successful responses */
}).execute();
</code></pre>
<p dir="auto">Edit: Here's a thread with a little more fleshed of a script example using that utility: <a href="https://forum.infiniteautomation.com/topic/2999/intesis-integration/2" rel="nofollow ugc">https://forum.infiniteautomation.com/topic/2999/intesis-integration/2</a></p>
]]></description><link>https://forum.mango-os.com/post/16467</link><guid isPermaLink="true">https://forum.mango-os.com/post/16467</guid><dc:creator><![CDATA[phildunlap]]></dc:creator><pubDate>Mon, 11 Dec 2017 16:42:39 GMT</pubDate></item></channel></rss>