web-dev-qa-db-ja.com

Ruby HTTPリクエストから応答ヘッダーを取得する

RubyでNet :: HTTPを使用してHTTPリクエストを作成しています。すべての応答ヘッダーを取得する方法がわかりません。

私は試した response.headerおよびresponse.headersおよび何も機能していません。

24
BlackHatSamurai

応答オブジェクトには実際にヘッダーが含まれています。

詳細については、「 Net :: HTTPResponse 」を参照してください。

できるよ:

response['Cache-Control']

ヘッダーを反復処理するために、応答オブジェクトでeach_headerまたはeachを呼び出すこともできます。

ヘッダーを応答オブジェクトの外側に本当に置きたい場合は、response.to_hashを呼び出します。

48
Intrepidd

応答Net::HTTPResponseにはNet::HTTPHeaderからのヘッダーが含まれています。これはeach_headerメソッドから取得でき、@ Intrepiddは次のように列挙子を返します。

response.each_header

#<Enumerator: #<Net::HTTPOK 200 OK readbody=true>:each_header>
[
  ["x-frame-options", "SAMEORIGIN"],
  ["x-xss-protection", "1; mode=block"],
  ["x-content-type-options", "nosniff"],
  ["content-type", "application/json; charset=utf-8"],
  ["etag", "W/\"51a4b917285f7e77dcc1a68693fcee95\""],
  ["cache-control", "max-age=0, private, must-revalidate"],
  ["x-request-id", "59943e47-5828-457d-a6da-dbac37a20729"],
  ["x-runtime", "0.162359"],
  ["connection", "close"],
  ["transfer-encoding", "chunked"]
]

次のようにto_hメソッドを使用して実際のハッシュを取得できます。

response.each_header.to_h

{
  "x-frame-options"=>"SAMEORIGIN", 
  "x-xss-protection"=>"1; mode=block", 
  "x-content-type-options"=>"nosniff", 
  "content-type"=>"application/json; charset=utf-8", 
  "etag"=>"W/\"51a4b917285f7e77dcc1a68693fcee95\"", 
  "cache-control"=>"max-age=0, private, must-revalidate", 
  "x-request-id"=>"59943e47-5828-457d-a6da-dbac37a20729", 
  "x-runtime"=>"0.162359", 
  "connection"=>"close", 
  "transfer-encoding"=>"chunked"
}
5
Gokul M

RestClient ライブラリはresponse.headersに対して予期される動作をすることに注意してください。

response.headers
{
                          :server => "nginx/1.4.7",
                            :date => "Sat, 08 Nov 2014 19:44:58 GMT",
                    :content_type => "application/json",
                  :content_length => "303",
                      :connection => "keep-alive",
             :content_disposition => "inline",
     :access_control_allow_Origin => "*",
          :access_control_max_age => "600",
    :access_control_allow_methods => "GET, POST, PUT, DELETE, OPTIONS",
    :access_control_allow_headers => "Content-Type, x-requested-with"
}
3
Dennis

ユーザーフレンドリー出力が必要な場合は、each_capitalized に使える:

response.each_capitalized { |key, value| puts " - #{key}: #{value}" }

これは印刷されます:

 - Content-Type: application/json; charset=utf-8
 - Transfer-Encoding: chunked
 - Connection: keep-alive
 - Status: 401 Unauthorized
 - Cache-Control: no-cache
 - Date: Wed, 28 Nov 2018 09:06:39 GMT
2
Vlad

ハッシュに保存するには=>

response_headers = {}
your_object.response.each { |key, value|  response_headers.merge!(key.to_s => value.to_s) }

puts response_headers
0
Prashanth Sams