2件ヒット
[1-2件を表示]
(0.008秒)
キーワード
-
net
/ http (1) -
webrick
/ httpauth / htpasswd (1)
検索結果
-
webrick
/ httpauth / htpasswd (18004.0) -
Apache の htpasswd 互換のクラスを提供するライブラリです。
Apache の htpasswd 互換のクラスを提供するライブラリです。 -
net
/ http (40.0) -
汎用データ転送プロトコル HTTP を扱うライブラリです。 実装は 2616 に基きます。
汎用データ転送プロトコル HTTP を扱うライブラリです。
実装は 2616 に基きます。
=== 使用例
==== ウェブサーバからドキュメントを得る (GET)
//emlist[例1: GET して 表示するだけ][ruby]{
require 'net/http'
print Net::HTTP.get('www.example.com', '/index.html')
//}
//emlist[例2: URI を使う][ruby]{
require 'net/http'
require 'uri'
print Net::HTTP.get(URI.parse('http://w...