v2026.5.3
All Bundles
Bundle RSS feed reader. RSSReader fetches and parses RSS 2.0 feeds from a URL or string; RSSChannel and RSSPost expose title, description, link, and publication date. Compile with -lib rss.

RSSChannel

RSS channel meta data

Operations

GetDescription #

Gets the description

method : public : GetDescription() ~ String

Return

TypeDescription
Stringdescription

Example

reader := RSSReader->New("https://feeds.bbci.co.uk/news/rss.xml");
if(reader->IsOk()) {
  reader->GetChannel()->GetDescription()->PrintLine();
};

GetLink #

Gets the link

method : public : GetLink() ~ String

Return

TypeDescription
Stringlink

Example

reader := RSSReader->New("https://feeds.bbci.co.uk/news/rss.xml");
if(reader->IsOk()) {
  reader->GetChannel()->GetLink()->PrintLine();
};

GetTitle #

Gets the title

method : public : GetTitle() ~ String

Return

TypeDescription
Stringtitle

Example

reader := RSSReader->New("https://feeds.bbci.co.uk/news/rss.xml");
if(reader->IsOk()) {
  reader->GetChannel()->GetTitle()->PrintLine();
};