How do I access a newly generated combined RSS feed in my front-end React app?

This topic was automatically generated from Slack. You can find the original thread here.

Guys! I believe I miss something very obvious. I’m trying to create a very simple flow - combine a number of different RSS feeds into one RSS feed. I have created a source and workflow - I can see my workflow triggers and collects the data (I can see events). Now I want to show that newly generated RSS feed in my front-end react app. But I can’t understand/find how to access that new feed. Where do I get a link to get workflow work results (RSS feed)?

Hi Vic,

Great question.

So instead of thinking of a workflow as both the retriever of the RSS feed and the HTTP endpoint for the react app to consume the feed, consider splitting these concerns into two different workflows.

The workflow you have currently could store this RSS feed into a Data Store or Database, then the 2nd workflow could expose an HTTP endpoint that retrieves this stored RSS feed data.

Alternatively, you could still use one workflow powered by HTTP requests, but it retrieves RSS feeds in real time and returns the data in the HTTP response to the react app.

Hope this helps!

thank you makes sense! Didn’t think from that perspective! I’ll give it a go!