Передать cookie в Net::HTTP.start

#ruby

#ruby

Вопрос:

Прямо сейчас у меня есть этот код, чтобы определить путь перенаправления для URL. Проблема в том, что я не могу передать никакие cookie.

Кто-нибудь знает, как это сделать?

 url = URI.parse("http://example.com") # Make sure you put the trailing slash on! 

found = false 
until found 
  host, port = url.host, url.port if url.host amp;amp; url.port 
  req = Net::HTTP::Get.new(url.path)

  res = Net::HTTP.start(url.host, url.port) do |http| 
    http.request(req)
  end
  puts res.header['location']
  res.header['location'] ? url = URI.parse(res.header['location']) : 
found = true 
end
  

Ответ №1:

Вот решение.

 url = URI.parse("http://example.com")

found = false 
until found 
  host, port = url.host, url.port if url.host amp;amp; url.port 
  req = Net::HTTP::Get.new(url.path, {
    "Cookie" => "sessid=123;"
  })

  res = Net::HTTP.start(url.host, url.port) do |http| 
    http.request(req)
  end
  puts res.header['location']
  res.header['location'] ? url = URI.parse(res.header['location']) : found = true 
end