0.0.1 • Published 9 years ago

followbot v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

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.