Question

When using 'net/https' and ssl, how do I disable verification of the resulting SSL certificate?

Was it helpful?

Solution

The following code will disable verification of the certificate. Note that this necessarily implies that invalid certificates will be accepted.

http.verify_mode = OpenSSL::SSL::VERIFY_NONE if http.use_ssl?
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top