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下來, 每個檔案中都是相應的使用列子