Oh I was not aware of this at all! Thank you!
Comment on How does RSS work under the hood?
poVoq@slrpnk.net 11 months ago
RSS and ATOM are just a way to format an XML file that can be downloaded from a server. There is nothing special about it otherwise and it is strictly one way as its just downloading a file.
LunchEnjoyer@lemmy.world 11 months ago
ThetaDev@lemm.ee 11 months ago
One important thing if you are building a RSS application is that the server should support conditional requests (the
If-Modified-Since
header). This way, a client does not have to download the entire feed on every update. It simply sends the last update date with its request and the server returns an empty response if the feed is up to date.There are some applications (for example YouTube) which dont support this, resulting in higher-than-necessery data usage, especially on mobile.