RSS
Method Signature
RSS( urls, [filter], [maxItems], [itunes], [mediaRss], [userAgent], [timeout] )Arguments
Argument
Type
Required
Description
Default
Examples
Basic RSS Feed Reading
// Read a simple RSS feed
feedData = RSS( "https://example.com/feed.xml" );
println( "Feed Title: " & feedData.channel.title );
println( "Found " & feedData.items.size() & " items" );
// Display first few items
feedData.items.each( ( item, index ) => {
if ( index <= 3 ) {
println( "- " & item.title );
println( " " & item.link );
}
} );Reading Multiple Feeds
Using Filters and Limits
Reading Podcast Feeds with iTunes Extensions
Reading Media RSS with Thumbnails
Custom HTTP Settings
Local File Reading
Return Value
items (Array)
items (Array)channel (Struct)
channel (Struct)iTunes Extension Fields
Media RSS Extension Fields
Related
Last updated
Was this helpful?
