Skip to content

Instantly share code, notes, and snippets.

@gautamarora
Created March 7, 2013 07:07
Show Gist options
  • Save gautamarora/5106117 to your computer and use it in GitHub Desktop.
Save gautamarora/5106117 to your computer and use it in GitHub Desktop.
Search Twitter
def url = "http://search.twitter.com/search.json?q=java&rpp=5&include_entities=true&result_type=mixed"
def result = new JsonSlurper().parse(new BufferedReader(new InputStreamReader(new URL(url).openStream())))
println result.results[0].text
println "@" + result.results[0].from_user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment