繁体   English   中英

SSL_connect SYSCALL 返回=5 errno=0 state=SSLv2/v3 read server hello A - Faraday::Error::ConnectionFailed

[英]SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A - Faraday::Error::ConnectionFailed

我在这里看到了很多答案,但没有一个奏效。

我正在使用omn​​iauth-oauth2 gem与第三方客户集成。

我正在使用此处描述的设置阶段但我总是收到此错误:

Authentication failure! failed_to_connect: Faraday::Error::ConnectionFailed, SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A

Faraday::Error::ConnectionFailed (SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3     read server hello A):
.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/net/http.rb:918:in `connect'
.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/net/http.rb:918:in `block in connect'

我在config/initializers是:

Rails.application.config.middleware.use OmniAuth::Builder do
  client_id = 'my_client_id'
  client_secret = 'secret'

  ca_file = Rails.root.join('config', 'cacert.pem').to_s

  ssl_options = {}
  ssl_options[:ca_path] = '/usr/local/etc/openssl'
  ssl_options[:ca_file] = ca_file

  provider :my_partner_provider, client_id, client_secret,  :client_options => {:ssl => ssl_options},
    setup: ->(env){
    req = Rack::Request.new(env)
    site = "https://#{req.params.fetch('shop')}"
    env['omniauth.strategy'].options[:client_options][:site]  = site
  }
end

我试过有和没有 ssl 选项。

作为补充,这是我的堆栈: https : //gist.github.com/cleytonmessias/11274209

我输入了终端openssl s_client -showcerts -connect partnerurl.com:443 <<<OK ,它返回了这个: https : openssl s_client -showcerts -connect partnerurl.com:443 <<<OK

有谁知道这个问题的解决方案?

感谢@mislav 提示更改SSL version

我不得不改变这一点,因为我的合作伙伴使用 asp.net 构建了它的应用程序并使用了这个版本的 SSL。 更多信息请访问https://mislav.net/2013/07/ruby-openssl/

所以最终的代码如下:

Rails.application.config.middleware.use OmniAuth::Builder do
  client_id = 'my_client_id'
  client_secret = 'secret'

  ssl_options = {}
  ssl_options[:version] = :TLSv1

  ssl = {}
  ssl[:ssl] =  ssl_options

  provider :partner, client_id, client_secret,
    client_options: { connection_opts: ssl} ,
    setup: ->(env){
    req = Rack::Request.new(env)
    token_url = "https://#{req.params.fetch('shop')}"
    env['omniauth.strategy'].options[:client_options][:token_url] = token_url
  }
end

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM