Using Twitter Search API 1.1 to get real time tweets in C# -


i want use twitter search api version 1.1 real time tweets twitter. , want in c#. can guide me in right direction. sample code of great me.

here's how linq twitter:

        var twitterctx = new twittercontext(...);          var queryresults =             search in twitterctx.search             search.type == searchtype.search &&                   search.query == "linq twitter"             select search;          search srch = queryresults.single();          console.writeline("\nquery: {0}\n", srch.queryresult);         srch.statuses.foreach(entry =>             console.writeline(                 "id: {0, -15}, source: {1}\ncontent: {2}\n",                 entry.statusid, entry.source, entry.text)); 

Comments

Popular posts from this blog

php - Calling a template part from a post -

Firefox SVG shape not printing when it has stroke -

How to mention the localhost in android -