twitter-rss-noauth

get a Twitter user timeline as an RSS feed without Twitter API auth

Usage no npm install needed!

<script type="module">
  import twitterRssNoauth from 'https://cdn.skypack.dev/twitter-rss-noauth';
</script>

README

twitter-rss-noauth

retrieves a Twitter timeline and outputs an RSS feed -- without Twitter API authentication!

background

Like rss-twitter, but without using the restrictive Twitter API! Huzzah for open access without authentication!

installation

$ npm i twitter-rss-noauth

usage

var twitterRss = require('twitter-rss-noauth')

twitterRss('noffle', function (err, feed) {
  // output an RSS 2.0 feed to stdout
  console.log(feed)
})

api

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