
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
twitter-wrapi
Advanced tools
Client interface for accessing Twitter REST API.
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.client.users.suggestions.get(function(err, data) {
if (!err) {
console.log(data);
}
});
client.statuses.show(23, function(err, data) {
if (!err) {
console.log(data);
}
});
client.users.show({screen_name: "jack"}, function(err, data) {
if (!err) {
console.log(data);
}
});
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);
}
});
FAQs
Wrapper for Twitter REST API
We found that twitter-wrapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.