作者giive (lala)
看板Ruby
标题HTTP 认证程式(不用 ssl )
时间Sat Sep 23 09:15:44 2006
出自我的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