mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
19 lines
428 B
Ruby
19 lines
428 B
Ruby
require 'rubygems'
|
|
require 'crack'
|
|
|
|
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
require File.join(dir, 'httparty')
|
|
require 'pp'
|
|
|
|
class Rep
|
|
include HTTParty
|
|
|
|
parser(
|
|
proc do |body, format|
|
|
Crack::XML.parse(body)
|
|
end
|
|
)
|
|
end
|
|
|
|
pp Rep.get('http://whoismyrepresentative.com/getall_mems.php?zip=46544')
|
|
pp Rep.get('http://whoismyrepresentative.com/getall_mems.php', query: { zip: 46544 })
|