標籤:error read lang port 工具 文法 post detail led
在文章 Ruby On Rails中REST API使用示範範例——雲端式平台+雲端服務打造自己的線上翻譯工具 中,利用ruby的Net::HTTP發起http請求訪問IBM Bluemix上的
source=en&target=es&text=hello" style="color: rgb(51, 102, 153); text-decoration: none; font-family: Arial; font-size: 14px; line-height: 26px;">語言翻譯服務時,提示: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 = truerequest = 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