无法使用curl、httparty 或net::http 获取https 协议中的任何内容

发布于 2024-12-17 02:16:44 字数 324 浏览 2 评论 0原文

我无法使用 https 获取任何内容。

我无法获取类似以下内容:

curl -k https://graph.facebook.com

或者

uri = URI('https://graph.facebook.com/davidarturo')
Net::HTTP.get(uri)

我得到:

error: EOFError: end of file reached

httparty 和 https 也没有运气

I am having trouble to get anything using https.

I can't fetch anything like:

curl -k https://graph.facebook.com

or

uri = URI('https://graph.facebook.com/davidarturo')
Net::HTTP.get(uri)

I get:

error: EOFError: end of file reached

Also there is no luck with httparty and https

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

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

发布评论

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

评论(1

如痴如狂 2024-12-24 02:16:45

当您使用“https”协议时,如果使用 net/http 库,则必须明确告知它:

require 'net/http'

uri = URI('https://graph.facebook.com/davidarturo')

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true if uri.scheme == 'https'

http.start do |h|
  response = h.request Net::HTTP::Get.new(uri.request_uri)
  puts response.body if Net::HTTPSuccess
end

As you use 'https' protocol, you must explicitly tell about it in case of using net/http library:

require 'net/http'

uri = URI('https://graph.facebook.com/davidarturo')

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true if uri.scheme == 'https'

http.start do |h|
  response = h.request Net::HTTP::Get.new(uri.request_uri)
  puts response.body if Net::HTTPSuccess
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文