ruby-on-rails – Ruby on Rails Net :: HTTP use_ssl throws’undefined method’

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Ruby on Rails Net :: HTTP use_ssl throws’undefined method’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的代码
sock = Net::HTTP.new(url.host,url.port)
sock.use_ssl = true
response = sock.start {|http| http.request(req)}

这里是错误

undefined method `use_ssl=' for #<Net::HTTP www.paypal.com:443 open=false>

谷歌让我什么都没有!

谢谢.

解决方法

那是因为函数是sock.use_ssl?它返回一个布尔值,它不是一个setter方法.

它似乎总是返回false.它在Net :: HTTPS包中被覆盖,如果你想要做任何SSL的东西,这可能是你应该使用的.

Here is the ruby doc

原文链接:https://www.f2er.com/ruby/271797.html

猜你在找的Ruby相关文章