Socket
Socket
Sign inDemoInstall

@loftx/twitter-graph-api

Package Overview
Dependencies
8
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @loftx/twitter-graph-api

A very basic node module to interact with the internal Twitter Graph API


Version published
Weekly downloads
0
Maintainers
1
Install size
776 kB
Created
Weekly downloads
 

Readme

Source

twitter-graph-api

A very basic node module to interact with the internal Twitter Graph API (i.e. the one used on the Twitter web site at https://twitter.com/) not the publically available API at https://developer.twitter.com/

Due to changes, version 2.0.0 no longer allows guest authentiction, but requires specific credentials to be set.

Usage

Create the API instance

const twitter = new twitterGraphApi();

Obtain a CSRF token, Cookie and Barer token - these can be grabbed from a the XHR request starting https://twitter.com/i/api/graphql/H8OOoI-5ZE4NxgRr8lfyWg/UserTweets as a logged in user.

twitter.setCsrfToken(...); twitter.setBearerToken(...); twitter.setCookie(...);

Call getUserTweets with a twitter UserID (the numeric ID not the username)

const result = await twitter.getUserTweets(twitterUserID);

The full graph API result will be returned.

FAQs

Last updated on 20 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc