I am trying to access the headers in a filter in sinatra. My request includes the header \"HTTP_AUTH\", however I can\'t access it. My filter is
before do
ha
Try use before
block with headers
method:
before do
headers "HTTP_AUTH" => "test"
headers "Content-Type" => "text/html; charset=utf-8"
end
or in request:
get '/' do
headers['HTTP_AUTH'] = "test"
headers['Cache-Control'] = 'public, max-age=600'
puts headers # show headers on this request
end
Use headers with is just hash