I inspected the headers and it seems the final URL is this one; the one we’re having issues with:
I used this code to take a look at the headers:
function dump(t, indent)
local notindent = (indent == nil)
if (notindent) then print(’-----dump-----’); indent=’{}’; end
if (t and type(t) == ‘table’) then
for k, v in pairs(t) do
if (type(k) ~= ‘number’) then
print(indent … ‘.’ … k … ’ = ’ … tostring(v))
if (indent) then
dump(v, indent…’.’…k)
end
end
end
for i=1, #t do
print(indent … ‘[’ … i … '] = ’ … tostring(t[i]))
dump(t[i], indent … ‘[’ … i … ‘]’)
end
end
if (notindent) then print(’-----dump-----’); end
end
– load needed modules
– load the http module
http = require(“socket.http”)
– Requests information about a document, without downloading it.
– Useful, for example, if you want to display a download gauge and need
– to know the size of the document in advance
r, c, h = http.request {
method = “HEAD”,
}
– r is 1, c is 200, and h would return the following headers:
– h = {
– date = “Tue, 18 Sep 2001 20:42:21 GMT”,
– server = “Apache/1.3.12 (Unix) (Red Hat/Linux)”,
– [“last-modified”] = “Wed, 05 Sep 2001 06:11:20 GMT”,
– [“content-length”] = 15652,
– [“connection”] = “close”,
– [“content-Type”] = “text/html”
– }
print("R is "…r)
print("C is "…c)
print_r(h)
dump(h)