Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sethetter/auto-retweet
Auto RT Twitter statuses from specified accounts.
https://github.com/sethetter/auto-retweet
Last synced: 12 days ago
JSON representation
Auto RT Twitter statuses from specified accounts.
- Host: GitHub
- URL: https://github.com/sethetter/auto-retweet
- Owner: sethetter
- Created: 2015-10-15T04:19:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-09T21:58:25.000Z (over 8 years ago)
- Last Synced: 2024-04-14T15:20:18.280Z (7 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 14
- Watchers: 5
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# auto-retweet
A node thing to auto RT statuses posted by specified accounts on Twitter.
## Configuration
Copy the `.env.example` file renamed to `.env` and fill in your own values.
* `RT_USERNAME_LIST`, default: `''` (comma separated)
* `YOUR_USERNAME`, default: `''`
* `INCLUDE_RTS`, default: `false`
* `INCLUDE_MENTIONS`, default: `false`
* `CHECK_INTERVAL`, default: `300000` (5 minutes)
* `CONSUMER_KEY`, default: `nil`
* `CONSUMER_SECRET`, default: `nil`
* `ACCESS_TOKEN_KEY`, default: `nil`
* `ACCESS_TOKEN_SECRET`, default: `nil`## Run it!
Make sure all necessary ENV vars are set and run `npm start`.
## The fuuuuuture
* Add env var to filter out posts containing certain keywords.
* Refactor a bit, you're better than this.
* Add tests? Seems like the right thing to do.