Skip to content

Instantly share code, notes, and snippets.

@masterT
Forked from aliang/custom_headers.rb
Created July 8, 2014 12:55
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 masterT/c50d3d15eba75361bffa to your computer and use it in GitHub Desktop.
Save masterT/c50d3d15eba75361bffa to your computer and use it in GitHub Desktop.
# this was surprisingly difficult to find, the documentation and API is poor
require "net/http"
require "uri"
url = URI.parse("http://www.whatismyip.com/automation/n09230945.asp")
req = Net::HTTP::Get.new(url.path)
req.add_field("X-Forwarded-For", "0.0.0.0")
# For content type, you could also use content_type=(type, params={})
# req.set_form_data({'query' => 'search me'})
# req['X-Forwarded-For'] = "0.0.0.0"
res = Net::HTTP.new(url.host, url.port).start do |http|
http.request(req)
end
puts res.body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment