2件ヒット
[1-2件を表示]
(0.009秒)
別のキーワード
キーワード
-
net
/ http (1) -
webrick
/ httpauth / basicauth (1)
検索結果
-
webrick
/ httpauth / basicauth (18052.0) -
HTTP の Basic 認証のためのライブラリです。
HTTP の Basic 認証のためのライブラリです。 -
net
/ http (58.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...