https://github.com/xaqron/twitter-follow-unfollow-bot
Automatically follow+mute/unfollow back on Twitter
https://github.com/xaqron/twitter-follow-unfollow-bot
follow mute twitter twitter-bot unfollow
Last synced: 4 months ago
JSON representation
Automatically follow+mute/unfollow back on Twitter
- Host: GitHub
- URL: https://github.com/xaqron/twitter-follow-unfollow-bot
- Owner: Xaqron
- License: mit
- Created: 2018-01-01T17:56:59.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-01T19:31:05.000Z (almost 8 years ago)
- Last Synced: 2025-04-24T03:08:16.520Z (6 months ago)
- Topics: follow, mute, twitter, twitter-bot, unfollow
- Language: JavaScript
- Size: 4.88 KB
- Stars: 9
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Twitter follow/unfollow bot
Automatically follow back and mute new followers and unfollow who unfollows you on Twitter.
## Configure
Replace [xaqron](https://twitter.com/xaqron) with your Twitter screen name and use appropriate [Twitter tokens](https://apps.twitter.com/).
```js
const screenName = 'xaqron'
const T = new Twit(
{
consumer_key: 'xxxxxxxxxxxxxxxxxxxxxxxxx',
consumer_secret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
access_token: '111111111111111111-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
access_token_secret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
timeout_ms: 60 * 1000
}
)
```## Install
```bash
git clone https://github.com/Xaqron/twitter-follow-unfollow-bot.git
cd twitter-follow-unfollow-bot
npm install
```## Run
```bash
node index.js
```