Cle*_*ton 9 ruby ruby-on-rails omniauth
我在这里看到了许多答案,但没有一个有效.
我正在使用omniauth-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'
Run Code Online (Sandbox Code Playgroud)
我的初始化程序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
Run Code Online (Sandbox Code Playgroud)
我尝试过使用和不使用ssl选项.
补充一下,这是我的堆栈:https://gist.github.com/cleytonmessias/11274209
我输入了终端openssl s_client -showcerts -connect partnerurl.com:443 <<<OK
,它返回了这个:https://gist.github.com/cleytonmessias/11288646
有谁知道这个问题的解决方案?
感谢@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
Run Code Online (Sandbox Code Playgroud)