node-red-node-twitter
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"name" : "node-red-node-twitter", | ||
"version" : "0.1.5", | ||
"version" : "0.1.6", | ||
"description" : "A Node-RED node to talk to Twitter", | ||
@@ -5,0 +5,0 @@ "dependencies" : { |
@@ -10,10 +10,6 @@ node-red-node-twitter | ||
**Note** : This is the same node as was in the core of Node-RED. | ||
As of v0.10.8 it will be installed from here instead. | ||
Install | ||
------- | ||
Run the following command in the root directory of your Node-RED install, usually | ||
this is ~/.node-red . | ||
Run the following command in your Node-RED user directory - typically `~/.node-red` | ||
@@ -27,3 +23,3 @@ npm install node-red-node-twitter | ||
###Input | ||
### Input | ||
@@ -38,7 +34,7 @@ Twitter input node. Can be used to search either: | ||
Sets the **msg.topic** to *tweets/* and then appends the senders screen name. | ||
Sets the `msg.topic` to *tweets/* and then appends the senders screen name. | ||
Sets **msg.location** to the tweeters location if known. | ||
Sets `msg.location` to the tweeters location if known. | ||
Sets **msg.tweet** to the full tweet object as documented by <a href="https://dev.twitter.com/overview/api/tweets">Twitter</a>. | ||
Sets `msg.tweet` to the full tweet object as documented by <a href="https://dev.twitter.com/overview/api/tweets">Twitter</a>. | ||
@@ -51,5 +47,5 @@ **Note:** when set to a specific user's tweets, or your direct messages, the node is subject to | ||
###Output | ||
### Output | ||
Tweets the **msg.payload**. | ||
Tweets the `msg.payload`. | ||
@@ -60,4 +56,4 @@ To send a Direct Message (DM) - use a payload like. | ||
If **msg.media** exists and is a Buffer object, this node will treat it as an image and attach it to the tweet. | ||
If `msg.media` exists and is a Buffer object, this node will treat it as an image and attach it to the tweet. | ||
If **msg.params** exists and is an object of name:value pairs, this node will treat it as parameters for the update request. | ||
If `msg.params` exists and is an object of name:value pairs, this node will treat it as parameters for the update request. |
42874
55