无法使用curl、httparty 或net::http 获取https 协议中的任何内容
我无法使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用“https”协议时,如果使用
net/http
库,则必须明确告知它:As you use 'https' protocol, you must explicitly tell about it in case of using
net/http
library: