Nice articles to learn how to use Web API beyond the classic and traditional user as API Asynchronous Streaming with Web API Asynchronously Streaming Video with Web API
From The Following link you can find out Nice new things coming with the VS 2010 and .NET 4 release. Scott Guthrie had explain it so nice. New Things Coming With The VS 2010 and .NET 4 release.
Public Timeline method support XML, RSS, JSON and ATOM format. Returns the 20 most recent statuses from non-protected users who have set a custom user icon. The public timeline is cached for 60 seconds so requesting it more often than that is a waste of resources. Requires Authentication : false Example Twitter.PublicTwitt pubTwitt = new Twitter.PublicTwitt(); string strResult = ""; XmlDocument xmlResult = null; strResult = pubTwitt.GetPublicTimeline(Twitter.OutputFormatType.xml); strResult = pubTwitt.GetPublicTimelineAsJSON(); xmlResult = pubTwitt.GetPublicTimelineAsXML(); xmlResult = pubTwitt.GetPublicTimelineAsAtom(); xmlResult = pubTwitt.GetPublicTimelineAsRSS(); Home Timeline method support XML, JSON and ATOM format. Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends. This is the equivalent of /timeline/home on the Web. Requires Authentication : true Example Twitter.UserTwitt userTwitt = new Twitter.User...
Comments