Get Twitter Timeline from Supertweet

Dependencies:   EthernetNetIf HTTPClientStreamingExample NetServices mbed

Fork of HTTPClientStreamingExample by Donatien Garnier

Revision:
3:b69bca736df0
Parent:
1:e6e8b074e675
Child:
4:8a9a71b740a7
--- a/HTTPClientStreamingExample.cpp	Fri Jul 09 14:39:10 2010 +0000
+++ b/HTTPClientStreamingExample.cpp	Fri Jul 09 14:45:12 2010 +0000
@@ -31,7 +31,8 @@
   char BigBuf[512 + 1] = {0};
   stream.readNext((byte*)BigBuf, 512); //Point to buffer for the first read
   //HTTPResult r = http.get("http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml", &stream, request_callback); //Load a very large page, such as the hackaday RSS feed
-  HTTPResult r = http.get("http://hackaday.com/feed/", &stream, request_callback); //Load a very large page, such as the hackaday RSS feed
+  //HTTPResult r = http.get("http://hackaday.com/feed/", &stream, request_callback); //Load a very large page, such as the hackaday RSS feed
+  HTTPResult r = http.get("http://mbed.org/blog/feeds/entries/", &stream, request_callback); //Load a very large page
   
   while(!completed)
   {