node-red-nodes/social/pushbullet
Dave Conway-Jones d913171f40
Pushbullet - Fix sms missing notifications issue
to close #936
2022-08-20 18:56:34 +01:00
..
icons Move nodes over from main repo 2013-10-30 20:38:41 +00:00
57-pushbullet.html Tidy up pushbullet (no fixes) 2020-11-16 21:26:32 +00:00
57-pushbullet.js Pushbullet - Fix sms missing notifications issue 2022-08-20 18:56:34 +01:00
LICENSE Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00
README.md update social nodes info style 2016-03-02 13:27:52 +00:00
package.json Pushbullet - Fix sms missing notifications issue 2022-08-20 18:56:34 +01:00

README.md

node-red-node-pushbullet

A Node-RED node to send alerts via Pushbullet.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-node-pushbullet

Usage

Pushbullet output node

Uses PushBullet to push msg.payload to a device that has the PushBullet app installed.

  • Optionally uses msg.topic to set the title, if not already set in the properties.
  • Optionally uses msg.pushtype to set the type of the push, if not already set in the properties.
  • Optionally uses msg.deviceid to set the device ID, if not already set in the properties.

You can also push to any channels that you own either configured or via msg.channel.

The node can also dismiss and delete any push and update items in a pushed list. In this case msg.data.iden must be set to a valid push id, if msg originates from the Pushbullet input node this value is already set.

Pushbullet input node

Receives Pushbullets from all devices. Messages contain the following data:

  • msg.pushtype: type of message
  • msg.topic: topic information from the push
  • msg.payload: main content of the push
  • msg.data: original object from the pushbullet API containing e.g. sender, receiver and message ids.

Pushes of type link and file will also have msg.message containing the message associated with the push.

For further details of see Pushbullet Stream API and Pushbullet Push API.