- Login into your twitter account and go to
https://apps.twitter.com
- Next click on create new app button
- Next enter app name and other details
- Next we can see our app details
- Next click on
Generate Access tokens
to get the app access tokens
- Next add the following snippet to configure Twitter API keys.
- A sample file is included to get started in
/config/twitter-keys.sample.js
module.exports = {
consumer_key: '...',
consumer_secret: '...',
access_token: '...',
access_token_secret: '...',
timeout_ms: 60*1000, // optional HTTP request timeout to apply to all requests.
};
yarn install
yarn run start
Javascript Twitter Tools are released under an MIT License.