码迷,mamicode.com
首页 > Web开发 > 详细

ruby on rails模拟HTTP请求发生错误:end of file reached

时间:2015-12-26 19:41:28      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:

在文章 Ruby On Rails中REST API使用示例——基于云平台+云服务打造自己的在线翻译工具 中,利用ruby的Net::HTTP发起http请求访问IBM Bluemix上的语言翻译服务时,提示:end of file reached

代码如下:

auth = "c9819718-4660-441c-9df7-07398950ea44:qUvrJPqwsgOx";
surl = "https://" + auth + "@gateway.watsonplatform.net/language-translation/api/v2/translate?source=en&target=es&text=" + @txt;
uri = URI.parse(surl);

begin #开始
	http = Net::HTTP.new(uri.host, uri.port)
	http.use_ssl = true
	request = Net::HTTP::Get.new(uri.request_uri)
	response = http.request(request)
	@result = "{\"text\":\"#{response.body}\"}";
rescue
	@result = "{\"error\":\"#{$!}!\"}";
end


看到这种错误信息,刚开始以为 是语法的问题,但怎么也找不到问题;

后来注意到,URL是HTTPS开头,想到可能是它的问题,

经过搜索,果然是需要设置:http.use_ssl = true

设置之后,又出来新的问题:SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

ruby on rails模拟HTTP请求发生错误:end of file reached

标签:

原文地址:http://blog.csdn.net/testcs_dn/article/details/50409675

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!