Fweets is a simple server that uses the twitter API in order to create an RSS feed of tweets that can be used to trigger actions on IFTTT.
Some back story about this is available here.
Fweets requires a bit tech-savviness: we will setup a heroku app to run the server.
- Clone this project from GitHub:
git clone https://github.com/abyx/fweets.git
- Create a Twitter application here
- Create a heroku app in the cloned project:
heroku create
- Enter your Twitter application's keys as heroku environment variables:
heroku config:set TWITTER_CONSUMER_KEY="KEY"
heroku config:set TWITTER_CONSUMER_SECRET="SECRET"
heroku config:set TWITTER_OAUTH_TOKEN="TOKEN"
heroku config:set TWITTER_OAUTH_TOKEN_SECRET="TOKEN_SECRET"
- Deploy to heroku:
git push heroku master
- That's it! RSS feeds that can be used with IFTTT are now avaialbe at http://YOURAPP.herokuapp.com/tweets/username and http://YOURAPP.herokuapp.com/favorites/username
Fweets is a quick one-hour hack to scratch my own itch. As you can see from the extremely short code, it does not do any error handling and such. I wouldn't use this for anything more serious than backing up your tweets and similar uses.