I'm trying to use Net::HTTP.get() for an https URL:

@data = Net::HTTP.get(uri, Net::HTTP.https_default_port())

However, I get the following result when I try to print the results:

can't convert URI::HTTPS into String

What's the deal? I'm using Ruby 1.8.7 (OS X)

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Try this?

uri = URI.parse("https://example.com/some/path")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE # read into this
@data = Net::HTTP::Get.new(uri.request_uri)
link|improve this answer
1  
I'll give this as the answer because it's the answer to what I asked, but the real answer is to point out i'm approaching this the wrong way. Use URI.parse(uri_string).read instead, works so, so beautifully. – NMoney Apr 26 '11 at 7:18
hatorade, I can't get that with ".read" to work for me at all. could you post a full answer to your own question with how you do this? – frabcus Sep 30 '11 at 10:48
What does VERIFY_NONE imply? What should possibly be done instead? – jonallard Dec 30 '11 at 22:58
that's a flag that means the veracity of the certificate is ignored, but this was a while ago so I'm not sure why you need to set it. – stef Jan 2 at 9:02
feedback

this should look as:

uri.port = Net::HTTP.https_default_port()
@data = Net::HTTP.get(uri)
link|improve this answer
that worked, but now the external API is complaining that I sent a plain HTTP request to an HTTPS port... – NMoney Apr 26 '11 at 6:44
haha, right ;) see below solution Stef provided, it should work – Vlad Khomich Apr 26 '11 at 6:45
it doesn't, i get an error saying "undefined method `use_ssl='" – NMoney Apr 26 '11 at 6:53
try to also require 'net/https' – Vlad Khomich Apr 26 '11 at 6:54
feedback

Same to stef's answer, but with the @data containing the body of the requested URI:

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
@data = response.body
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.