In this article you will learn how to setup the Twitter RSS Feed Reader in MVC 4. I'm using the same technique I used in my last article to read the Facebook feeds. Let's look at the image that we will be creating using the given code.
At the very first, setup the model like this:
public class TwitterRSS
{
public string Title { get; set; }
public string Link { get; set; }
public string PubDate { get; set; }
}
public class TwitterRssReader
{
public static IEnumerable<TwitterRSS> GetFeed()
{
var client = new WebClient();
client.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
var xmlData = client.DownloadString("https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=itorian");
XDocument xml = XDocument.Parse(xmlData);
var TwitterUpdates = (from story in xml.Descendants("item")
select new TwitterRSS
{
Title = ((string)story.Element("title")),
Link = ((string)story.Element("link")),



Kurian ThomasPosted Oct 28, 2019, 1:57 AM
Can u add download link for this post
Kurian ThomasPosted Oct 28, 2019, 12:35 AM
Download option is not show