Ruby發送http協議(get、post、https伺服器驗證、https雙向驗證)

來源:互聯網
上載者:User

1. 建立HTTP串連(通過GET方式發送請求參數)
   

require "open-uri"      #如果有GET請求參數直接寫在URI地址中      uri = 'http://uri'    html_response = nil      open(uri) do |http|        html_response = http.read      end      puts html_response  

 

2. 通過POST發送請求參數

    params = {}      params["name"] = 'Tom'      uri = URI.parse("http://uri")    res = Net::HTTP.post_form(uri, params)       #返回的cookie      puts res.header['set-cookie']      #返回的html body      puts res.body  

 

3.https-僅驗證伺服器

require 'net/https'require 'uri'uri = URI.parse('https://liuwm-pc:8081/2.html')http = Net::HTTP.new(uri.host, uri.port)http.use_ssl = true if uri.scheme == "https"  # enable SSL/TLShttp.verify_mode = OpenSSL::SSL::VERIFY_NONE #這個也很重要http.start {  http.request_get(uri.path) {|res|    print res.body  }}

 

4.https-雙向驗證

開始一直找針對pfx的驗證,但是google了半天也沒找到。後來發現pfx也是pkcs12認證類型的一種,重新搜尋關鍵詞pkcs12,找到了自己想要的結果,汗一個~~

補充一下, ruby發送用戶端時指定的是client.csr和client.key認證,而不是pfx(一直沒找到), 效果上和瀏覽器指定pfx一樣

 

require 'net/https'require 'uri'uri = URI.parse('https://liuwm-pc:8081/2.html')http = Net::HTTP.new(uri.host, uri.port)http.use_ssl = true if uri.scheme == "https"  # enable SSL/TLShttp.cert =OpenSSL::X509::Certificate.ne(File.read("D:/111/client.crt"))http.key =OpenSSL::PKey::RSA.new((File.read("D:/111/client.key")), "123456")# key and passwordhttp.verify_mode = OpenSSL::SSL::VERIFY_NONE #這個也很重要http.start {  http.request_get(uri.path) {|res|    print res.body  }}

 

 

補充:Net::HTTP Cheat Sheet(手冊)

挪威的ruby開發人員August Lilleaas最近整理了一些關於如何使用 Net::HTTP庫的程式碼範例。
Net::HTTP被廣泛的使用到許多庫中,類似John Nunemaker’s的HTTParty和Paul DIx’s的高效能Typhoeus。作為標準庫的一部分,Net::HTTP雖然沒有簡單好記的API,但也算是一個不錯的可選方案。

這是串連: https://github.com/augustl/net-http-cheat-sheet , 可以直接download下來, 每個檔案中都是相應的使用列子

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.