Search code examples
rssbotframeworkazure-bot-service

How to read RSS for Bot Builder


May I ask about how to read RSS in Nodejs for Bot Builder?

Here with my sample RSS from URL.

<rss>
   <channel> 
      <item>
         <title>A- Title</title>
         <description>A - Description</description>
    </item>
      <item>
         <title>B-Title</title>
         <description>B - Description</description>
    </item>
</channel>
</rss>

I tried the XMLHttprequest but can't.

Thank you.


Solution

  • Just as there is SyndicationFeed to read RSS feed in C#, there are various ways in which you can read RSS feeds in NodeJS for bot builder:

    Hope this helps.