How can I take a website url for example: How to create a RSS Feed from my website and put it on the app I'm developing? - Unity Engine - Unity Discussions (obviously not that one) and turn it into a RSS Feed for my app?
You could make a web request using the .NET/Mono API (see System.Net.HttpWebRequest) and then parse and process the XML of your RSS feed however you want.
The RSS specification is fairly straightforward to use directly; although you might opt to use an open source library. The following web page has a tutorial for creating such a thing:
I hope that this helps!
1 Like
Thanks @numberkruncher Ill check it out!