The get_headers
method returns the names and values of all of the headers in the HTTP response.
get_headers()
(table) A table that maps header names to values.
The following example sends an HTTP request and then prints the headers that are returned to the console:
local response = request:send() for k,v in pairs(response:get_headers()) do print("HEADER:",k,v) end
|