372件ヒット
[201-300件を表示]
(0.108秒)
ライブラリ
-
net
/ http (372)
キーワード
- [] (12)
- []= (12)
-
add
_ field (12) -
basic
_ auth (12) - chunked? (12)
-
content
_ length (12) -
content
_ length= (12) -
content
_ range (12) -
content
_ type= (12) - delete (12)
- each (12)
-
each
_ capitalized _ name (12) -
each
_ header (12) -
each
_ key (12) -
each
_ name (12) -
each
_ value (12) - fetch (36)
-
form
_ data= (12) -
get
_ fields (12) - key? (12)
-
main
_ type (12) - method (12)
-
proxy
_ basic _ auth (12) - range (12)
-
range
_ length (12) -
set
_ content _ type (12) -
set
_ form _ data (12) -
sub
_ type (12) -
type
_ params (12)
検索結果
先頭5件
-
Net
:: HTTPHeader # content _ type=(type) (3026.0) -
type と params から Content-Type: ヘッダフィールドの 値を設定します。
...@param params パラメータ属性をハッシュで指定します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data... -
Net
:: HTTPHeader # delete(key) -> [String] | nil (3026.0) -
key ヘッダフィールドを削除します。
...ルドが存在しなかった場合には
nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_length = 10
req.content_length # => 10
req.delete("Content-Length") # => ["... -
Net
:: HTTPHeader # each {|name , val| . . . . } -> () (3026.0) -
保持しているヘッダ名とその値をそれぞれ ブロックに渡して呼びだします。
...val は ", " で連結した文字列がブロックに渡されます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_header { |key,value| puts "#{key} = #{value}" }
# => accept-encoding = gzip;q=... -
Net
:: HTTPHeader # each _ capitalized _ name {|name| . . . . } -> () (3026.0) -
保持しているヘッダ名を正規化 ('x-my-header' -> 'X-My-Header') して、ブロックに渡します。
...('x-my-header' -> 'X-My-Header')
して、ブロックに渡します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_capitalized_name { |key| puts key }
# => Accept-Encoding
# => Accept
# => User... -
Net
:: HTTPHeader # each _ header {|name , val| . . . . } -> () (3026.0) -
保持しているヘッダ名とその値をそれぞれ ブロックに渡して呼びだします。
...val は ", " で連結した文字列がブロックに渡されます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_header { |key,value| puts "#{key} = #{value}" }
# => accept-encoding = gzip;q=... -
Net
:: HTTPHeader # each _ key {|name| . . . } -> () (3026.0) -
保持しているヘッダ名をブロックに渡して呼びだします。
...て呼びだします。
ヘッダ名は小文字で統一されます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_name { |name| puts name }
# => accept-encoding
# => accept
# => user-agent
//}... -
Net
:: HTTPHeader # each _ name {|name| . . . } -> () (3026.0) -
保持しているヘッダ名をブロックに渡して呼びだします。
...て呼びだします。
ヘッダ名は小文字で統一されます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_name { |name| puts name }
# => accept-encoding
# => accept
# => user-agent
//}... -
Net
:: HTTPHeader # each _ value {|value| . . . . } -> () (3026.0) -
保持しているヘッダの値をブロックに渡し、呼びだします。
...します。
渡される文字列は ", " で連結したものです。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_value { |value| puts value }
# => gzip;q=1.0,deflate;q=0.6,identity;q=0.3
# =>... -
Net
:: HTTPHeader # key?(key) -> bool (3026.0) -
key というヘッダフィールドがあれば真を返します。 key は大文字小文字を区別しません。
...せん。
@param key 探すヘッダフィールド名を文字列で与えます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
res = Net::HTTP.get_response(uri)
res.key?('content-type') # => true
res.key?('nonexist-header') # => false
//}...