Get response headers from Ruby HTTP request

The response object actually contains the headers.

See “Net::HTTPResponse” for more infomation.

You can do:

response['Cache-Control']

You can also call each_header or each on the response object to iterate through the headers.

If you really want the headers outside of the response object, call response.to_hash

Leave a Comment