Twitter

From breaking news and entertainment to sports and politics, get the full story with all the live commentary.

Go to site
Explore
/
Apps
/
Twitter

Twitter API Integrations

Build and run workflows using the Twitter API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    twitter: {
      type: "app",
      app: "twitter",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.twitter.com/1.1/account/verify_credentials.json`,
    }, {
      token: {
        key: this.twitter.$auth.oauth_access_token,
        secret: this.twitter.$auth.oauth_refresh_token,
      },
      oauthSignerUri: this.twitter.$auth.oauth_signer_uri,
    })
  },
})
Advanced Search with Twitter API on New Requests from HTTP / Webhook API
HTTP / Webhook + Twitter
 
Try it
Send Message (Advanced) with Discord Webhook API on My Liked Tweets from Twitter API
Twitter + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on My Liked Tweets from Twitter API
Twitter + Google Sheets
 
Try it
Advanced Search with Twitter API on New Item in Feed from RSS API
RSS + Twitter
 
Try it
Advanced Search with Twitter API on New Message from Discord API
Discord + Twitter
 
Try it
My Liked Tweets from the Twitter API

Emit new Tweets you like on Twitter

 
Try it
My Tweets from the Twitter API

Emit new Tweets you post to Twitter

 
Try it
New Follower of Me from the Twitter API

Emit new event when a user follows you on Twitter

 
Try it
New Follower of User from the Twitter API

Emit new event when a specific user gains a follower

 
Try it
New List Followed from the Twitter API

Emit new event when the authenticated user follows a List

 
Try it
Simple Search with the Twitter API

Return Tweets that matches your search criteria. See the docs here

 
Try it
Advanced Search with the Twitter API

Return Tweets that matches your search criteria. See the docs here

 
Try it
Add User To List with the Twitter API

Add a member to a list. The authenticated user must own the list to be able to add members to it. See the docs here

 
Try it
Create Tweet with the Twitter API

Create a new tweet. See the docs here

 
Try it
Delete Tweet with the Twitter API

Remove a posted tweet. See the docs here

 
Try it

Authentication

Twitter uses OAuth authentication. When you connect your Twitter account, Pipedream will open a popup window where you can sign into Twitter and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Twitter API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. requestToken
    POSThttps://api.twitter.com/oauth/request_token
  2. authorization
    GEThttps://api.twitter.com/oauth/authenticate?client_id={{oauth.client_id}}&state={{oauth.state}}&redirect_uri={{oauth.redirect_uri}}&response_type=code&scope={{oauth.space_separated_scopes}}&oauth_token={{oauth.token}}&force_login=true
  3. accessToken
    POSThttps://api.twitter.com/oauth/access_tokencontent-type: application/x-www-form-urlencoded
Using Event Sources and Workflows: Analyze Twitter Sentiment in Real-Time and Save to Google Sheets
Using Event Sources and Workflows: Analyze Twitter Sentiment in Real-Time and Save to Google Sheets
Learn how you can use Pipedream event sources and serverless workflows to listen for new Twitter mentions, analyze the sentiment of each Tweet using the npm sentiment package (https://www.npmjs.com/package/sentiment), and then save that data to Google Sheets in real-time.
Entering Data in Params Forms
Entering Data in Params Forms
Learn about the new model to enter expressions and reference previous step exports in params forms.
Managing the Concurrency and Execution Rate of Workflow Events
Managing the Concurrency and Execution Rate of Workflow Events
Managing the Concurrency and Execution Rate of Workflow Events.

Community Posts

A Look at Pipedream
A Look at Pipedream
I'm going to build a workflow that will search Twitter every hour for a keyword. It will take the results, format them nicely, and then email it.
Building a Google Sheets Twitter Bot with Pipedream
Building a Google Sheets Twitter Bot with Pipedream
This is something that's been kicking around my head for a week or so and today I thought I'd try it. It ended up taking about 20 minutes total and 10 lines of code, of which 5 are a function I copied and pasted. While what I built is kind of trivial, I'm blown away by how much was done by built-in functions with Pipedream and how little work I had to do myself. In fact, most of my time was spent in setting stuff up outside of Pipedream itself. Alright, so what did I build?
Building a Twitter Bot in Pipedream
Building a Twitter Bot in Pipedream
I did this by parsing information from the GI Joe wikipedia site and implementing it on Pipedream's platform. I'm going to share how I built it, but be aware that roughly 95% of the work was involved in getting my random character. The aspects that pertain to Pipedream were incredibly simple - which is what you want in a platform.
Using State in Pipedream Workflows
Using State in Pipedream Workflows
I did this by parsing information from the GI Joe wikipedia site and implementing it on Pipedream's platform. I'm going to share how I built it, but be aware that roughly 95% of the work was involved in getting my random character. The aspects that pertain to Pipedream were incredibly simple - which is what you want in a platform.
Building a Twitter Scheduling System with Pipedream and Google Sheets
Building a Twitter Scheduling System with Pipedream and Google Sheets
A few months ago, I blogged about how I used Pipedream and Google Sheets to create a Twitter bot. The idea was simple - read a sheet - select a random row - and use that as the source of a new Tweet. I was thinking about this recently and how useful Google Sheets can be as a "light weight CMS" and figured out another interesting use case - Twitter scheduling.
A demo of using the Twitter API, via Pipedream, to render the images from a Twitter account.