For those that are new to Discourse platform and still needs a way of fetching news via RSS, there is a good news!
Discourse, being mostly a js app, is fetching and process a bunch of json. If, for some reason, you need to process the forum data outside of the forum, you just need to append a .json
at the end of any URL. If you need a RSS feed, you just need to append .rss
. Pretty cool, no?
For example, if you want latest forum activity, you have these urls:
- https://forum.sublimetext.com/latest - browser view
- https://forum.sublimetext.com/latest.rss
- https://forum.sublimetext.com/latest.json
Enjoy!