https://github.com/dschep/twitter2rss
https://github.com/dschep/twitter2rss
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dschep/twitter2rss
- Owner: dschep
- Created: 2016-12-11T22:05:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-18T15:29:44.000Z (over 5 years ago)
- Last Synced: 2025-01-17T16:55:51.900Z (3 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Twitter user RSS feeds
[](http://www.serverless.com)
A simple port to JS & serverless of
https://github.com/dschep/Twitter-user_timeline.rss-proxy## Why?
* you like RSS feeds
* you might want to follow some one on twitter with out increasing their follower
count and bloated ego (ie: [@realDonaldTrump](https://twitter.com/realDonaldTrump))## Quickstart
First, create a Twitter App & generate Access Tokens - https://apps.twitter.com/Then create a file called `secrets.json` that contains the keys & secrets you just created:
```
{
"CONSUMER_KEY": "FROMTWITTER",
"CONSUMER_SECRET": "FROMTWITTER"
"ACCESS_TOKEN_KEY": "FROMTWITTER",
"ACCESS_TOKEN_SECRET": "FROMTWITTER"
}
```Now deploy the function to AWS Lambda!
```
$ npm install
$ npm run sls deploy
```Just use the URL in the output of the deploy into an RSS feeder and you're all done!.
Of course, replace `{screenName}` in the URL with a twitter users' screen name :wink: