Skip to content

Instantly share code, notes, and snippets.

@gusanthiago
Created April 12, 2017 01:20
Show Gist options
  • Save gusanthiago/b04cc02de8548d50292d467c881803ad to your computer and use it in GitHub Desktop.
Save gusanthiago/b04cc02de8548d50292d467c881803ad to your computer and use it in GitHub Desktop.
Requisita uma imagem de um dominio e salva
require 'net/http'
port = 8080
Net::HTTP.start("domain", port) do |http|
resp = http.get("/img/cam.jpg")
open("file_name.jpg", "wb") do |file|
file.write(resp.body)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment