Node.js telegram bot for tracking instagram unfollowers
touch .env
COOKIE=
- go to instagram.com
- log in
- click F12
- go to "Network" tab
- clear results
- go to your profile
- refresh page
- scroll to top in new results
- click on first result (www.instagram.com)
- on the right window, click "Headers"
- scroll to find header named "cookie"
- right click it and "copy value"
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
INSTAGRAM_USERNAME=your_instagram_username
$ npm i
$ npm start
docker build . -t harduex/instagram-unfollowers-bot
docker pull harduex/instagram-unfollowers-bot
docker run -it -d -v instagram-unfollowers-volume:/app/data --env-file .env harduex/instagram-unfollowers-bot
# run multiple instances by replacing username with every user you run
docker-compose -p username up -d
docker-compose up -d