0.1.1 • Published 11 years ago

twitter-autofollow-bot v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
11 years ago

twitter-autofollow-bot

NPM NPM

Twitter auto-follow bot written in Node.js.

Installation

$ npm install twitter-autofollow-bot

Usage

var twitterAutofollowBot = require('twitter-autofollow-bot');

// twitterAutofollowBot.FETCH_INTERVAL = 60000;           // (default: 1 minute)
// twitterAutofollowBot.RETRY_INTERVAL = 1000;            // (default: 1 second)
// twitterAutofollowBot.UNFOLLOW_NON_FOLLOWERS = false;   // (default: false)

twitterAutofollowBot.run({
  accessToken: TWITTER_ACCESS_TOKEN,
  accessTokenSecret: TWITTER_ACCESS_TOKEN_SECRET,
  consumerKey: TWITTER_CONSUMER_KEY,
  consumerSecret: TWITTER_CONSUMER_SECRET
});

License