747件ヒット
[1-100件を表示]
(0.044秒)
キーワード
- cgi (12)
-
cgi
/ session (12) - drb (12)
-
drb
/ gw (12) -
net
/ http (12) -
net
/ https (12) -
net
/ imap (12) -
net
/ protocol (12) - open-uri (12)
-
optparse
/ uri (12) - prettyprint (12)
- psych (12)
- rdoc (12)
-
rdoc
/ parser / changelog (12) - rexml (12)
-
rexml
/ document (12) -
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / sax2parser (12) -
rexml
/ parsers / streamparser (12) -
rinda
/ rinda (12) - rss (12)
- rubygems (12)
-
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / specification _ command (12) - securerandom (12)
- socket (12)
- time (12)
- webrick (12)
-
webrick
/ cgi (12) -
webrick
/ httpauth (12) -
webrick
/ httpauth / authenticator (12) -
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / digestauth (12) -
webrick
/ httpauth / htdigest (12) -
webrick
/ httpauth / htgroup (12) -
webrick
/ httpauth / htpasswd (12) -
webrick
/ httpauth / userdb (12) -
webrick
/ httpproxy (12) -
webrick
/ httprequest (12) -
webrick
/ httpresponse (12) -
webrick
/ https (12) -
webrick
/ httpserver (12) -
webrick
/ httpservlet (12) -
webrick
/ httpservlet / abstract (12) -
webrick
/ httpservlet / cgihandler (12) -
webrick
/ httpservlet / erbhandler (12) -
webrick
/ httpservlet / filehandler (12) -
webrick
/ httpservlet / prochandler (12) -
webrick
/ httpstatus (12) -
webrick
/ httputils (12) -
webrick
/ httpversion (12) - win32ole (12)
- xmlrpc (3)
- yaml (12)
検索結果
先頭5件
-
net
/ http (6293.0) -
汎用データ転送プロトコル HTTP を扱うライブラリです。 実装は 2616 に基きます。
...データ転送プロトコル HTTP を扱うライブラリです。
実装は 2616 に基きます。
=== 使用例
==== ウェブサーバからドキュメントを得る (GET)
//emlist[例1: GET して 表示するだけ][ruby]{
require 'net/http'
print Net::HTTP.get('www.example.com', '/ind......uire 'net/http'
require 'uri'
print Net::HTTP.get(URI.parse('http://www.example.com/index.html'))
//}
//emlist[例3: より汎用的な例][ruby]{
require 'net/http'
require 'uri'
url = URI.parse('http://www.example.com/index.html')
res = Net::HTTP.start(url.host, url.port) {|http|
http.get('/in......require 'net/http'
url = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(url.path)
res = Net::HTTP.start(url.host, url.port) {|http|
http.request(req)
}
puts res.body
//}
==== フォームの情報を送信する (POST)
//emlist[例][ruby]{
require 'net/http'
require 'ur... -
net
/ https (6017.0) -
このライブラリは Ruby 1.9.2 で net/http にマージされました。 そちらを使ってください。
...このライブラリは Ruby 1.9.2 で net/http にマージされました。
そちらを使ってください。... -
webrick
/ httpauth / authenticator (6017.0) -
HTTP 認証で利用するモジュールを提供するライブラリです。
...HTTP 認証で利用するモジュールを提供するライブラリです。... -
webrick
/ httpauth / basicauth (6017.0) -
HTTP の Basic 認証のためのライブラリです。
...HTTP の Basic 認証のためのライブラリです。... -
webrick
/ httpauth / digestauth (6017.0) -
HTTP の Digest 認証のためのライブラリです。
...HTTP の Digest 認証のためのライブラリです。... -
webrick
/ httprequest (6017.0) -
HTTP リクエストのためのクラスを提供するライブラリです。
...HTTP リクエストのためのクラスを提供するライブラリです。... -
webrick
/ httpresponse (6017.0) -
HTTP のレスポンスを表すためのクラスを提供するライブラリです。
...HTTP のレスポンスを表すためのクラスを提供するライブラリです。... -
webrick
/ httpserver (6017.0) -
HTTP サーバの機能を提供するライブラリです。
...HTTP サーバの機能を提供するライブラリです。... -
webrick
/ httpstatus (6017.0) -
HTTP のステータスを表す例外クラスを提供します。
...HTTP のステータスを表す例外クラスを提供します。...