https://github.com/hackergrrl/twitter-rss-noauth
:bird: Retrieves a Twitter timeline and outputs an RSS feed -- without the Twitter API!
https://github.com/hackergrrl/twitter-rss-noauth
Last synced: 6 months ago
JSON representation
:bird: Retrieves a Twitter timeline and outputs an RSS feed -- without the Twitter API!
- Host: GitHub
- URL: https://github.com/hackergrrl/twitter-rss-noauth
- Owner: hackergrrl
- License: mit
- Created: 2015-10-25T22:27:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-21T06:41:07.000Z (almost 9 years ago)
- Last Synced: 2024-05-13T16:25:56.848Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# twitter-rss-noauth
> retrieves a Twitter timeline and outputs an RSS feed -- without Twitter API
> authentication!## background
Like [rss-twitter](https://www.npmjs.com/package/rss-twitter), but without using
the restrictive Twitter API! Huzzah for open access without authentication!## installation
```sh
$ npm i twitter-rss-noauth
```## usage
```js
var twitterRss = require('twitter-rss-noauth')twitterRss('noffle', function (err, feed) {
// output an RSS 2.0 feed to stdout
console.log(feed)
})
```## api
```js
var twitterRss = require('twitter-rss-noauth')
```### twitterRss(username, cb(err, feed))
Specify a `username` of the timeline you want. The callback `cb` will contain an
optional error as its first parameter, and a string containing the RSS feed as
its second parameter.## license
MIT