ruby on rails類比HTTP請求錯誤發生:end of file reached

來源:互聯網
上載者:User

標籤: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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.