How to read all common Google reading feeds by code?

I share a lot of channels on my Google reader, I want some code to use asp.net to read all these channels and put them on the page, maybe with paging, because there are too many channels. Does anyone know how to do this ?, or if there is a tool for this

+3
source share
4 answers

You can use RSSToolkit to read shared feeds.

+3
source

Here you can find the Atom feed for your channels: http://www.google.com/reader/atom/

URL-, Google Reader RSS .

- . . http://atomnet.sourceforge.net/

//Reads everything in the Atom document.
AtomFeed feed = AtomFeed.Load(new Uri("http://www.yourfeed.com/atom.xml");
+3

, Google Reader API. . . .

: Google API

+1

Source: https://habr.com/ru/post/1704602/


All Articles