Skip to content

Instantly share code, notes, and snippets.

@xentek
Created February 7, 2012 01:57
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xentek/1756582 to your computer and use it in GitHub Desktop.
Save xentek/1756582 to your computer and use it in GitHub Desktop.
HTTParty with XML example
require 'httparty'
response = HTTParty.get('http://www.google.com/ig/api?weather=Chicago')
data = response.parsed_response
puts data['xml_api_reply']['weather']['current_conditions']['condition']['data']
require 'httparty'
response = HTTParty.get('http://www.google.com/ig/api?weather=Chicago')
forecast_conditions = response.parsed_response['xml_api_reply']['weather']['forecast_conditions']
forecast_conditions.each do |condition|
puts "The forecast for #{condition['day_of_week']['data']} with a high of #{condition['high']['data']}, and a low of #{condition['low']['data']}. It will be #{condition['condition']['data']}"
end
@suryapandian
Copy link

For a use case I would like to edit the XML response and make another post request.
What is the best way to go about this?

  1. Should I construct the XML back again from the hash?
  2. Can I somehow get the response in XML format itself and edit the data?

Which would be the better approach?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment