Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 604 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 604 Bytes

FollowBot

A Twitter bot that follows a random amount of your followers back

Usage

There's a demo included

var FollowBot = require( 'FollowBot' );

var followBot = new FollowBot({

  twitter: {
    consumer_key: 'REQUIRED',
    consumer_secret: 'REQUIRED',
    access_token: 'REQUIRED',
    access_token_secret: 'REQUIRED'
  },
  
  // Optional: false if you don't want to follow protected accounts. Default: false
  allowProtected: false
});

followBot.followRandom(5);

You can get the Twitter keys and tokens by creating a new Twitter app.