Ruby 中的机械化和 SSLError

发布于 2024-12-25 20:34:43 字数 1067 浏览 0 评论 0原文

将 Mechanize 与我的 ruby​​ 脚本一起使用,我无法解决众所周知的 SSLError。 我在 Rails 上运行 Windows 7 和 RailsInstaller。

我想用我的 ruby​​ 脚本生成 adcrun.ch 链接。 因此我必须登录我的 adcrun.ch 帐户:

require 'mechanize'
a = Mechanize.new
page  = a.get( "http://adcrun.ch" )
login_form  = page.form_with( :action => "http://adcrun.ch/" )

login_form.usr_email = "[email protected]"
login_form.usr_pass  = "mypassword"

page = a.submit( login_form, login_form.button_with( :value => "Login" ) 

现在,当我运行此代码时,它会显示 SSLError 状态

OpenSSL::SSL::SSLError: SSL_connect 返回=1 errno=0 state=SSLv3 读取服务器证书 B:证书验证失败

我还包含了来自 http://curl.haxx.se/ca/cacert.pem 像这样

a.ca_file "/RailsInstaller/cacert.pm"

或那样,

a.agent.http.ca_file "/RailsInstaller/cacert.pm"

但这两种解决方案都不起作用。

有人可以给我提示吗?

Using Mechanize with my ruby script, I can't get around the the well known SSLError.
I'm running on rails with Windows 7 and RailsInstaller.

I want to generate adcrun.ch links with my ruby script.
Therefore I have to login into my adcrun.ch account:

require 'mechanize'
a = Mechanize.new
page  = a.get( "http://adcrun.ch" )
login_form  = page.form_with( :action => "http://adcrun.ch/" )

login_form.usr_email = "[email protected]"
login_form.usr_pass  = "mypassword"

page = a.submit( login_form, login_form.button_with( :value => "Login" ) 

Now when I run this code it shows me that SSLError state

OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

I have also included the newest ca file from http://curl.haxx.se/ca/cacert.pem
like this

a.ca_file "/RailsInstaller/cacert.pm"

or that

a.agent.http.ca_file "/RailsInstaller/cacert.pm"

but neither of the solutions worked.

Can someone give me hints?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情何以堪。 2025-01-01 20:34:43

看来您应该使用 "https://adcrun.ch" 而不是 "http://adcrun.ch"。目前,您正在尝试在非安全端口上建立安全连接,因此,您将收到返回的“无效证书”,并且 OpenSSL 无法验证它。

It looks like you should be using "https://adcrun.ch" instead of "http://adcrun.ch". Currently, you are trying to make a secure connection on a non-secure port, therefore, you are getting an "invalid cert" returned and OpenSSL can't verify it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文