IRobotSoft Administrator
IRobotSoft Administrator
   

IRobotSoft, the Best Internet Robot System
Posts: 1609
Gender:
|
Surely you can scrape RSS data. You can add a schedule action and add events to complete the following steps: 1. Assign variable 'rss_url' as the url of the RSS 2. Assign variable 'query' as a string: <item>{ title=<title>:tx; link=<link>:tx; description=<description>:tx &html_decode; keywords=<media:keywords>:tx; pubdate=<pubDate>:tx; } 3. load RSS feeds into a dataset variable: rss.loadData(rss_url,'link is not null','xml',query) Then you can do anything you want from the 'rss' dataset, for example, repeated an action based on rss and go to URL using rss.link.
|