This neuron allows you to send a tweet on your timeline.
parameter |
required |
default |
choices |
comment |
consumer_key |
yes |
None |
|
User info |
consumer_secret |
yes |
None |
|
User info |
access_token_key |
yes |
None |
|
User info |
access_token_secret |
yes |
None |
|
User info |
tweet |
yes |
None |
|
The sentence to be tweeted |
Name |
Description |
Type |
sample |
tweet |
The tweet which has been posted |
string |
coucou kalliopé |
- name: "post-tweet"
neurons:
- twitter:
consumer_key: ""
consumer_secret: ""
access_token_key: ""
access_token_secret: ""
args:
- tweet
signals:
- order: "post on Twitter {{ tweet }}"
In order to be able to post on Twitter, you need to grant access of your application on Twitter by creating your own app associate to your profile.
- Sign in your Twitter account
- Let's create your app apps.twitter.com
- click on the button "Create New App"
- Fill in your application details
- Create your access token (to post a tweet, you need at least "Read and Write" access)
- Get your consumer_key, consumer_secret, access_token_key and access_token_secret from the tab "Key and access token" (Keep them secret !)
- Post your first message with this neuron !