← Twitter

My Liked Tweets from Twitter API

Pipedream makes it easy to connect APIs for Twitter and 1000+ other apps remarkably fast.

Trigger workflow on
My Liked Tweets from the Twitter API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Trigger a workflow on My Liked Tweets with Twitter API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the My Liked Tweets trigger
    1. Connect your Twitter account
    2. Configure Polling interval
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message 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
Get Film with SWAPI API on My Liked Tweets from Twitter API
Twitter + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on My Liked Tweets from Twitter API
Twitter + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on My Liked Tweets from Twitter API
Twitter + OpenAI (ChatGPT)
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

My Liked Tweets on Twitter
Description:Emit new Tweets you like on Twitter
Version:0.0.10
Key:twitter-my-liked-tweets

Code

import twitter from "../../twitter.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
  key: "twitter-my-liked-tweets",
  name: "My Liked Tweets",
  description: "Emit new Tweets you like on Twitter",
  version: "0.0.10",
  type: "source",
  props: {
    twitter,
    timer: {
      label: "Polling interval",
      description: "Pipedream will poll the Twitter API on this schedule",
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  dedupe: "unique",
  async run() {
    (await this.twitter.getLikedTweets()).reverse().forEach((tweet) => {
      this.$emit(this.twitter.enrichTweet(tweet), {
        id: tweet.id_str,
        summary: tweet.full_text,
      });
    });
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
TwittertwitterappThis component uses the Twitter app.
Polling intervaltimer$.interface.timer

Pipedream will poll the Twitter API on this schedule

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:

About Twitter

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

More Ways to Use Twitter

Triggers

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
New Trends by Geo from the Twitter API

Emit new event when a new topic is trending on Twitter in a specific geographic location

 
Try it

Actions

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