auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
return `Hi ${steps.trigger.event.screen_name}! Thanks for the follow!
Want to see how we automatically sent this DM when you followed us? Check out this live workflow:
https://pipedream.com/@/${steps.trigger.context.workflow_id}/edit?e=${steps.trigger.context.id}
The workflow was triggered when you followed @pipedream, and we used Node.js code steps together with the Twit npm package and Pipedream managed authentication for the Twitter API to send this message.
You can copy the workflow to customize and run it for free, or build your own using any APIs (we support managed auth for 900+ OAuth and key-based apps), Node.js + npm, and no code triggers and actions!
Check out more live demos at https://pipedream.com/@demo or see how to build a workflow at https://www.youtube.com/watch?v=pRHsQyyfYl0.`
auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps, auths) => {
}
const Twit = require('twit')
const { api_key, api_secret_key, access_token, access_token_secret } = auths.twitter_developer_app
const T = new Twit({
consumer_key: api_key,
consumer_secret: api_secret_key,
access_token,
access_token_secret,
timeout_ms: 60 * 1000, // optional HTTP request timeout to apply to all requests.
strictSSL: true, // optional - requires SSL certificates to be valid.
})
const response = await T.post("direct_messages/events/new", {
"event": {
"type": "message_create",
"message_create": {
"target": {
"recipient_id": steps.trigger.event.id_str
},
"message_data": {
"text": steps.generate_message.$return_value
}
}
}
});
return response.data.event