Advice on HTTPS connections using Ruby on Rails

Posted by user502052 on Stack Overflow See other posts from Stack Overflow or by user502052
Published on 2011-01-10T02:18:12Z Indexed on 2011/01/10 2:53 UTC
Read the original article Hit count: 423

Filed under:
|
|
|
|

Since I am developing a "secure" OAuth protocol for my RoR3 apps, I need to send protected information over the internet, so I need to use HTTPS connections (SSL/TSL). I read How to Cure Net::HTTP’s Risky Default HTTPS Behavior aticle that mentions the 'always_verify_ssl_certificates' gem, but, since I want to be more "pure" (it means: I do not want to install other gems, but I try to do everything with Ruby on Rails) as possible, I want to do that work without installing new gems.

I read about 'open_uri' (it is also mentioned in the linked article: "open_uri is a common exception - it gets things right!") that is from the Ruby OOPL and I think it can do the same work.

So, for my needs, is 'open_uri' the best choice (although it is more complicated of 'always_verify_ssl_certificates' gem)? If so, can someone help me using that (with an example, if possible) because I have not found good guides about?

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about ruby