HTTP 認證程式(不用 ssl )

看板Ruby作者 (lala)時間18年前 (2006/09/23 09:15), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
出自我的Blog http://lightyror.blogspot.com/2006/09/http-ssl.html 本來以為上面那一隻 script 可以偵測公司各個 server 的狀態 :p 但是果然事情沒那麼簡單 有一台我架的 test server 裡面的網頁是開發階段的 需要避免閒雜人等進來了解研發機密 為求方便,直接使用 http auth 即可 好吧, 這一段是可以認證的 HTTP 程式 require 'net/http' url_address = 'http://www.example.com' url = URI.parse(url_address) req = Net::HTTP::Get.new(url.path) req.basic_auth 'user', 'password' res = Net::HTTP.start(url.host, url.port) { |http| http.request(req) } puts res.body -- lighty RoR 是一個介紹 lighttpd , SQLite , Ruby and Rails 的 Blog http://lightyror.blogspot.com/ -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 61.230.108.209
文章代碼(AID): #1558glkB (Ruby)
文章代碼(AID): #1558glkB (Ruby)