るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.011秒)
トップページ > クエリ:body=[x] > ライブラリ:webrick/httpauth/basicauth[x]

別のキーワード

  1. httprequest body
  2. net/http body
  3. httpresponse body
  4. net/http read_body
  5. httpresponse read_body

検索結果

WEBrick::HTTPAuth::BasicAuth (8.0)

HTTP の Basic 認証のためのクラスです。

...passwd(nil, 'username', 'supersecretpass')

authenticator = WEBrick::HTTPAuth::BasicAuth.new(:UserDB => htpd, :Realm => realm)
srv.mount_proc('/basic_auth') {|req, res|
authenticator.authenticate(req, res)
res.body = "hoge"
}
srv.start # http://127.0.0.1:10080/basic_auth...