Skip to content

Instantly share code, notes, and snippets.

@fabriziogiordano
Created April 25, 2012 19:40
Show Gist options
  • Save fabriziogiordano/2492733 to your computer and use it in GitHub Desktop.
Save fabriziogiordano/2492733 to your computer and use it in GitHub Desktop.
require 'net/http'
url = URI.parse('http://search.yahooapis.com/ContentAnalysisService/V1/termExtraction')
appid = 'YahooDemo'
context = 'Italian sculptors and painters of the renaissance favored
the Virgin Mary for inspiration'
query = 'madonna'
post_args = {
'appid' => appid,
'context' => context,
'query' => query
}
resp, data = Net::HTTP.post_form(url, post_args)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment