All Projects → jongold → unblockerer

jongold / unblockerer

Licence: other
🐦 unblock everyone on twitter

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

unblockerer

NPM

Unblock everyone on Twitter. Useful if your account gets hacked and they block 20000 people — Twitter doesn't have a bulk unblock anywhere.

Usage

Simple

  • create a .env and fill in your Twitter auth details. An example is in .env.example.
  • npm install
  • ./run.sh

Manual

const unblockerer = require('unblockerer');
const Twit = require('twit');
const T = new Twit({
  consumer_key: 'foo',
  consumer_secret: 'bar',
  access_token: 'baz',
  access_token_secret: 'qux',
});

const BATCH_SIZE = 10;

unblockerer(10).run({
  client: T,
}).fork(
  err => console.log(err),
  res => console.log(res)
)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].