Skip to content

Instantly share code, notes, and snippets.

@ohcibi
Created November 5, 2012 16:08
Show Gist options
  • Save ohcibi/4018013 to your computer and use it in GitHub Desktop.
Save ohcibi/4018013 to your computer and use it in GitHub Desktop.
uri = URI.parse "http://192.168.137.151:8000/test"
http = Net::HTTP.new uri.host, uri.port
req = Net::HTTP::Post.new uri.request_uri
req.basic_auth 'admin', 'admin'
req.body = rbody
resp = http.request req
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment