retrieves a Twitter timeline and outputs an RSS feed -- without Twitter API authentication!
Like rss-twitter, but without using the restrictive Twitter API! Huzzah for open access without authentication!
$ npm i twitter-rss-noauth
var twitterRss = require('twitter-rss-noauth')
twitterRss('noffle', function (err, feed) {
// output an RSS 2.0 feed to stdout
console.log(feed)
})
var twitterRss = require('twitter-rss-noauth')
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.
MIT