Retrieve details from blogs using C#
I am searching for some kind of a开发者_如何转开发 method to retrieve data from different kinds of blogs programmatically using C# to post in one of my own ASP.Net pages. I want to get the most recent post, images in that post (if present), and the updated date of that post.
So, is there a common API kind of thing to connect to those blogs and retrieve that info from them once the blog URL is given?
There are a lot of blog engines out there and they do not share a common API. I think that trying to program one would be extremely difficult and maintaining it even more so. However, I think that you could just get an RSS feed from the blogs and parse the necessary data from that.
Here's one of the RSS libraries for .NET: http://www.rssdotnet.com/
精彩评论