126件ヒット
[1-100件を表示]
(0.016秒)
別のキーワード
ライブラリ
- ビルトイン (6)
-
net
/ http (48) - openssl (48)
-
webrick
/ httpresponse (12) -
webrick
/ httpservlet / prochandler (12)
クラス
- Data (6)
-
Net
:: HTTP (36) -
Net
:: HTTPResponse (12) -
OpenSSL
:: OCSP :: BasicResponse (12) -
OpenSSL
:: OCSP :: Response (36) -
WEBrick
:: HTTPResponse (12) -
WEBrick
:: HTTPServlet :: ProcHandler (12)
キーワード
-
body
_ permitted? (12) - create (12)
- define (6)
-
get
_ response (24) - new (60)
-
post
_ form (12)
検索結果
先頭5件
- Net
:: HTTP . get _ response(host , path = nil , port = nil) -> Net :: HTTPResponse - Net
:: HTTP . get _ response(uri) -> Net :: HTTPResponse - OpenSSL
:: OCSP :: Response . new -> OpenSSL :: OCSP :: Response - OpenSSL
:: OCSP :: Response . new(der) -> OpenSSL :: OCSP :: Response - OpenSSL
:: OCSP :: Response . create(status , basic _ resp) -> OpenSSL :: OCSP :: Response
-
Net
:: HTTP . get _ response(host , path = nil , port = nil) -> Net :: HTTPResponse (6203.0) -
指定した対象に GET リクエストを送り、そのレスポンスを Net::HTTPResponse として返します。
...指定した対象に GET リクエストを送り、そのレスポンスを
Net::HTTPResponse として返します。
対象の指定方法は URI で指定するか、
(host, path, port) で指定するかのいずれかです。
@param uri データの取得対象を URI で指定します。... -
Net
:: HTTP . get _ response(uri) -> Net :: HTTPResponse (6203.0) -
指定した対象に GET リクエストを送り、そのレスポンスを Net::HTTPResponse として返します。
...指定した対象に GET リクエストを送り、そのレスポンスを
Net::HTTPResponse として返します。
対象の指定方法は URI で指定するか、
(host, path, port) で指定するかのいずれかです。
@param uri データの取得対象を URI で指定します。... -
OpenSSL
:: OCSP :: Response . new -> OpenSSL :: OCSP :: Response (3125.0) -
Response オブジェクトを生成します。
...Response オブジェクトを生成します。
DER 形式の文字列を渡した場合はその内容を
ロードします。引数なしの場合は空のオブジェクトを返します。
@param der DER 形式の文字列
@see OpenSSL::OCSP::Response.create... -
OpenSSL
:: OCSP :: Response . new(der) -> OpenSSL :: OCSP :: Response (3125.0) -
Response オブジェクトを生成します。
...Response オブジェクトを生成します。
DER 形式の文字列を渡した場合はその内容を
ロードします。引数なしの場合は空のオブジェクトを返します。
@param der DER 形式の文字列
@see OpenSSL::OCSP::Response.create... -
OpenSSL
:: OCSP :: Response . create(status , basic _ resp) -> OpenSSL :: OCSP :: Response (3124.0) -
Response オブジェクトを OpenSSL::OCSP::BasicResponse オブジェクト から生成します。
...Response オブジェクトを OpenSSL::OCSP::BasicResponse オブジェクト
から生成します。
@param status ステータスコード(整数)
@param basic_resp OpenSSL::OCSP::BasicResponse オブジェクト
@see OpenSSL::OCSP::Response.new... -
OpenSSL
:: OCSP :: BasicResponse . new -> OpenSSL :: OCSP :: BasicResponse (3107.0) -
空の BasicResponse オブジェクトを生成します。
...空の BasicResponse オブジェクトを生成します。
@see OpenSSL::OCSP::Response.create... -
WEBrick
:: HTTPResponse . new(config) -> WEBrick :: HTTPResponse (3101.0) -
HTTPResponse オブジェクトを生成して返します。
...HTTPResponse オブジェクトを生成して返します。
@param config 設定を保存したハッシュを指定します。:HTTPVersion は必須です。
require 'webrick'
res = WEBrick::HTTPResponse.new( { :HTTPVersion => "1.1" } )... -
Net
:: HTTPResponse . body _ permitted? -> bool (3001.0) -
エンティティボディを含むことが許されているレスポンスクラス ならば真を、そうでなければ偽を返します。
エンティティボディを含むことが許されているレスポンスクラス
ならば真を、そうでなければ偽を返します。
//emlist[例][ruby]{
require 'net/http'
Net::HTTPSuccess.body_permitted? # => true
Net::HTTPNotModified.body_permitted? # => false
//} -
Net
:: HTTP . post _ form(uri , params) -> Net :: HTTPResponse (101.0) -
URI で指定した対象に フォームのデータを HTTP で POST します。
URI で指定した対象に フォームのデータを HTTP で
POST します。
送るデータは params に文字列から文字列への Hash として
渡します。
@param uri POST する対象を URI で指定します。
@param params POST するデータです。