Thanks to visit codestin.com
Credit goes to github.com

Skip to content

arhea/favbot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

favbot

Automatically favorite tweets that contain certain keywords

Configure and Run

First install the dependencies.

npm install

Copy the settings file settings.example.js and create a settings.js in the same location. DO NOT COMMIT THIS TO GITHUB.

exports = {
    twitter: {
        consumer_key: "YOUR_CONSUMER_KEY",
        consumer_secret: "YOUR_CONSUMER_SECRET",
        access_token: "YOUR_ACCESS_TOKEN",
        access_token_secret: "YOUR_ACCESS_TOKEN_SECRET"
    },

    keywords: [],

    delay: 32
};

Run the favbot node favbot

Twitter Account Setup

Go to https://apps.twitter.com and create an application. Make sure you select Read Write permissions. Generate access tokens and API keys and place those in your settings.js file.

Development

Will compile coffeescript files and will watch for changes to the code base.

gulp

About

Automatically favorite tweets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 66.8%
  • CoffeeScript 33.2%