标签: ruby
curl -I http://google.com
它将打印出原始的http标头。红宝石的替代品是什么?
问题是,如何在Ruby中打印raw http headers?
raw http headers
答案 0 :(得分:4)
require 'open-uri' open("http://google.com"){|f| p f.meta }