|
|
I am trying to read the content of the feed http://feeds.feedburner.com/ommalik - if you go there you will see that the full content of the article is available but when I read it using Argotic, I only get the summary. This is the code I use to
read the data:
var rss = RssFeed.Create(uri, settings);
foreach (var item in rss.Channel.Items)
{
var guid = item.Guid == null ? item.Link.AbsoluteUri : item.Guid.Value;
var count = feed.FeedItems.Count(fi => fi.Guid == guid);
if (count != 0) continue; //already added
var feedItem = new FeedItem
{
CreatedOn = DateTime.UtcNow,
Link = item.Link.ToString(),
Guid = guid,
PublicationDate = item.PublicationDate,
Title = item.Title,
Author = item.Author,
Description = item.Description,
};
feed.FeedItems.Add(feedItem);
}
Any idea how I can get the full content of the items?
|
|