I'm trying to add a Twitter Timeline to my website.
Instead of using the Twitter API,
What if I just get the HTML of that Twitter page with a HttpWebRequest, and then parse and implement it with additional CSS and HTML the way I like?
string strResult;
WebResponse objResponse;
WebRequest objRequest =HttpWebRequest.Create("https://www.twitter.com/<username>");
objResponse = objRequest.GetResponse();
using (StreamReader sr = new StreamReader(objResponse.GetResponseStream()))
{
strResult = sr.ReadToEnd();
sr.Close();
}
The code above gets the HTML when you view the source of a page.
Would it be illegal to use Twitter's content in that way?
And the major question...
What if I do the same thing for my Facebook, Tumblr, Pinterest and Youtube accounts, so that I can combine all my Feeds in a single page and create a giant Timeline that includes many accounts?