The best Tinder bot!
To install, just run:
npm install --save tibo
Go to tinder.com and enter with your account. Once you did that, you need to track the network with the Chrome's console. In every request did by Tinder, there's a header parameter called "x-auth-token", you need that token to use Tibo.
Tibo like/deny users based on a blacklist. An blacklist must be an array of words (can even be empty, if you just want to use the bot), which every word is searched in the user bio, well, if the word is found, the user is denied.
const tibo = require('tibo')
const blacklist = [
'cats',
'drugs',
'fruits'
] // Every user with this words in their bio will be denied
tibo('your-x-auth-token', blacklist)