我有一个ruby脚本可以保存来自各个站点的网页,我如何确保它检查服务器是否可以发送gzip压缩文件并保存它们如果可用...任何帮助都会很棒!
可以将自定义标题作为哈希发送...
custom_request = Net::HTTP::Get.new(url.path, {"Accept-Encoding" => "gzip"})
然后,您可以通过将响应对象定义为:
response = Net::HTTP.new(url.host, url.port).start do |http| http.request(custom_request) end p [response['Content-Encoding']
感谢那些回应......