angular-feeds icon indicating copy to clipboard operation
angular-feeds copied to clipboard

aggregate feeds

Open vazy opened this issue 10 years ago • 1 comments
trafficstars

How can I aggregate multiple feeds?

simply:

<feed url="http://www.feed1.com/rss" summary="true"></feed>  
<feed url="http://www.feed2.com/rss" summary="true"></feed>  
<feed url="http://www.feed3.com/rss" summary="true"></feed>  

would result in segregated sections for each source. I would like it aggregated and sorted by most recent regardless of the source.

Any way to achieve this?

vazy avatar Feb 28 '15 20:02 vazy

AFAIK, Google Feeds doesn't support opml format - http://en.wikipedia.org/wiki/OPML. If you have some server side script running, you could mash them up and return an aggregated RSS feed.

Or, if you want this module to support multiple url's as the input, feel free to send a PR.

<feed urls="http://url1.com, http://url2.com" />

siddii avatar Mar 01 '15 16:03 siddii