Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nisrulz/twitterbot-nodejs
[Bot] A twitter bot made using nodejs which can post tweets, retweet other tweets and possibly fav tweets
https://github.com/nisrulz/twitterbot-nodejs
Last synced: 3 days ago
JSON representation
[Bot] A twitter bot made using nodejs which can post tweets, retweet other tweets and possibly fav tweets
- Host: GitHub
- URL: https://github.com/nisrulz/twitterbot-nodejs
- Owner: nisrulz
- License: apache-2.0
- Created: 2016-05-11T09:32:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-12-28T20:33:30.000Z (almost 5 years ago)
- Last Synced: 2024-10-18T19:31:52.316Z (16 days ago)
- Language: JavaScript
- Homepage: http://nisrulz.github.io/twitterbot-nodejs
- Size: 28.3 KB
- Stars: 145
- Watchers: 15
- Forks: 74
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# **TwitterBot-NodeJS**
### Show some :heart:
[![GitHub stars](https://img.shields.io/github/stars/nisrulz/twitterbot-nodejs.svg?style=social&label=Star)](https://github.com/nisrulz/twitterbot-nodejs) [![GitHub forks](https://img.shields.io/github/forks/nisrulz/twitterbot-nodejs.svg?style=social&label=Fork)](https://github.com/nisrulz/twitterbot-nodejs/fork) [![GitHub watchers](https://img.shields.io/github/watchers/nisrulz/twitterbot-nodejs.svg?style=social&label=Watch)](https://github.com/nisrulz/twitterbot-nodejs) [![GitHub followers](https://img.shields.io/github/followers/nisrulz.svg?style=social&label=Follow)](https://github.com/nisrulz/twitterbot-nodejs)
[![Twitter Follow](https://img.shields.io/twitter/follow/nisrulz.svg?style=social)](https://twitter.com/nisrulz)Yeah it pretty much does what it says in the title. Its a twitter bot which can post tweets, retweet other tweets and possibly fav tweets.
This is a simple bot , to build which I had to go through a lot of information on the internet possibly because it wasn't updated/consistent. Plus I wanted to learn how build a bot anyhow ;)
Currently active bot using the same code is [GDGND Bot](https://twitter.com/gdgndbot).
Hopefully it helps some other people who want to build their own bot.Simple.Easy.Cute (Ok, last one didnot go with the flow..)
> It attempts to retweet once per hour
## Installation
+ Install [Node.js](http://nodejs.org/)
+ Clone this repo
```bash
git clone https://github.com/nisrulz/twitterbot-nodejs.git
```
+ Run
```bash
npm install
```> It will install [Twit](https://github.com/ttezel/twit), the library that lets us talk to Twitter.
## Connecting to Twitter
1. Register a Twitter account and also get its "app info".
>Twitter doesn't allow you to register multiple twitter accounts on the same email address. I recommend you create a brand new email address (perhaps using Gmail) for the Twitter account. Once you register the account to that email address, wait for the confirmation email.1. Now go [here](https://dev.twitter.com/apps/new) and log in as the Twitter account for your bot:
1. Fill up the form and submit.
1. Next once the submission completes you will be taken to a page which has the
+ "Settings" tab : Update details here
+ "Permissons" tab : Enable `Read and Write`
+ "Key and Access Token" tab : Click on `Create my access token`.
1. Use the generated tokens in the "Key and Access Token" tab to fill the fields under the `config.js` file in your app directory.
It should look like this:```javascript
module.exports = {
consumer_key: 'blah',
consumer_secret: 'blah',
access_token: 'blah',
access_token_secret: 'blah'
}
```
1. Update the code under `bot.js` , with the your values. Best of all modify the code, tinker with it.
1. Now type the following in the command line in your project directory:```bash
node bot.js
```Hopefully at this point you see a message like "Success! Check your bot, it should have retweeted something."
Ok it won't say that, you have to code that in. Its simple as```javascript
console.log("Success! Check your bot, it should have retweeted something.");
```Check the Twitter account for your bot, and it should have retweeted a tweet with the provided hashtag.
### **Whats Next**
You might want to push this app to a running server , probably [heroku](https://www.heroku.com/).
> Note : Heroku servers would go back to sleep if there is no activity after some time, so you can have a look at [Kaffeine](https://kaffeine.herokuapp.com/) , to keep your server active.
>
> Do not misuse the twitter api to spam or burden the server load for twitter api , as twitter follows a strict rule of closing down accounts that do that. Please read [here for the rules](https://support.twitter.com/articles/18311)### Contribute
+ **Star** - If you like it
+ **Fork** - If you like to build your own version
+ **File an issue** - If you found a bug
+ **Send a pull request** - If you want to contribute#### Credits
[Twit Library](https://github.com/ttezel/twit)If you appreciate my work, consider [buying me](https://www.paypal.me/nisrulz/5usd) a cup of :coffee: to keep me recharged :metal: [[PayPal](https://www.paypal.me/nisrulz/5usd)]
License
=======Copyright 2016 Nishant Srivastava
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.