Twitter Developer App

Use a Twitter developer app you've created to send API requests

Integrate the Twitter Developer App API with the Schedule API

Setup the Twitter Developer App API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate Twitter Developer App and Schedule remarkably fast. Free for developers.

Send Direct Message (DM) with Twitter Developer App API on Daily schedule from Schedule API
Schedule + Twitter Developer App
 
Try it
Send Direct Message (DM) with Twitter Developer App API on Monthly schedule from Schedule API
Schedule + Twitter Developer App
 
Try it
Send Direct Message (DM) with Twitter Developer App API on Schedule based on a custom interval from Schedule API
Schedule + Twitter Developer App
 
Try it
Send Direct Message (DM) with Twitter Developer App API on Weekly schedule from Schedule API
Schedule + Twitter Developer App
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Tweet Metrics from the Twitter Developer App API
 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Message from the Twitter Developer App API

Emit an event each time the authenticated user receives a Direct Message

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Send Direct Message (DM) with the Twitter Developer App API

Send a DM to a user.

 
Try it

Connect Twitter Developer App

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module.exports = defineComponent({
  props: {
    twitter_developer_app: {
      type: "app",
      app: "twitter_developer_app",
    }
  },
  async run({steps, $}) {
    const Twit = require('twit')
    
    const { api_key, api_secret_key, access_token, access_token_secret } = this.twitter_developer_app.$auth
    
    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.
    })
    
    return await T.get('account/verify_credentials', { skip_status: true })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.

Community Posts

A demo of using the Twitter API, via Pipedream, to render the images from a Twitter account.