Thanks for replying Taylor
I am using ASP.NET C# and adopting the library Tweetinvi maintained by Linvi, recommended on Twitter Developer Documentation.
complete code is as follows:
IToken token = new Token(
ConfigurationManager.AppSettings["token_AccessToken"],
ConfigurationManager.AppSettings["token_AccessTokenSecret"],
ConfigurationManager.AppSettings["token_ConsumerKey"],
ConfigurationManager.AppSettings["token_ConsumerSecret"]);
WebExceptionHandlingDelegate del = delegate(WebException wex)
{
lblMessage.Text = wex.Message;
};
dynamic lstr_SearchedData = token.ExecuteGETQuery("https://stream.twitter.com/1.1/statuses/filter.json" +
"?track=" + tbxTexttoSearch.Text.Trim()
//"&count=800"
)
Kindly check it guide me for solution.
Regards
Aamir