Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

twitter-wrapi

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twitter-wrapi

Wrapper for Twitter REST API

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

Twitter REST API Wrapper 🐦

Client interface for accessing Twitter REST API.

Usage

Create a client object to connect to Twitter API endpoints.

var twitterWrapi = require('twitter-wrapi');

var client = new twitterWrapi({
  consumer_key: 'YOUR_CONSUMER_KEY',			// Consumer Key (API Key)
  consumer_secret: 'TWITTER_CONSUMER_SECRET',	// Consumer Secret (API Secret)
  token: 'TWITTER_ACCESS_TOKEN_KEY',			// Access Token
  token_secret: 'TWITTER_ACCESS_TOKEN_SECRET'	// Access Token Secret
});

// Now you are ready to make API calls to twitter.

Provide parameters and a callback.

API calls follow this syntax:

client.apigroup.action(param1, ..., queryString, callback);

  • param - (if required) url parameters - eg: For statuses.show the value for :id.
  • queryString - (as required) API endpoint parameters as key-value pairs.

Examples

List Twitter suggested user categories

client.users.suggestions.get(function(err, data) {
  if (!err) {
    console.log(data);
  }	
});

Fetch Single Tweet

client.statuses.show(23, function(err, data) {
  if (!err) {
    console.log(data);
  }	
});

Get User Profile

client.users.show({screen_name: "jack"}, function(err, data) {
  if (!err) {
    console.log(data);
  }	
});

Friends List

client.friends.list({
		cursor:-1,
		screen_name:"twitterapi",
		skip_status:true,
		include_user_entities:false	
	},
	function(err, data) {
	  if (!err) {
	    console.log(data);
	  }	
	}
);
client.search.tweets({
  q: "#freebandnames",
  since_id: "24012619984051000",
  max_id: "250126199840518145",
  result_type: "mixed",
  count:4
  }, 
  function(err, data) {
    if (!err) {
      console.log(data);
    } 
  }
);

This is a POST method call that expects a body content. Pass null, if body is not required.

client.saved_searches.create({query: "sandwiches"}, null, function(err, data) {
  if (!err) {
    console.log(data);
  }	
});

API Functions

Statuses

Media

Direct_messages

Search

Friendships

Friends

Followers

Account

Blocks

Users

Suggestions

Favorites

Lists

Members

Subscribers

Saved_searches

Geo

Application

Help

License

MIT

Keywords

twitter

FAQs

Package last updated on 08 Dec 2015

Did you know?

Socket

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