Skip to content

Instantly share code, notes, and snippets.

@vkbandi
Created September 16, 2015 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vkbandi/ba6e304c0490dd24c3ec to your computer and use it in GitHub Desktop.
Save vkbandi/ba6e304c0490dd24c3ec to your computer and use it in GitHub Desktop.
A simple code to show how to query using the OAuth twitter class
//Replace the term search_keyword with a term you want to search
//rpp=100 in the url means results per page is 100, and lang=en means
//Language is english
string result = oauth.oAuthWebRequest(oAuthTwitter.Method.GET, "http://search.twitter.com/search.json", "q=" + search_keyword + "&rpp=100&lang=en");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment