使用Lua获取HTTPS页面内容

时间:2017-03-06 15:03:19

标签: https lua luasocket luasec

我正在尝试从我的lua代码访问网页的内容。以下代码适用于非HTTPS页面

local http=require("socket.http")

body,c,l,h = http.request("http://www.example.com:443")

print("status line",l)
print("body",body)

但是在HTTPS页面上,我收到以下错误。

  

您的浏览器发送了此服务器无法理解的请求   原因:您正在向支持SSL的服务器端口说明HTTP   请使用HTTPS方案访问此URL。

现在我做了我的研究,有些人建议使用Luasec,但无论我多么努力,我都无法让它工作。 Luasec的库也比我想要的要复杂一点。我正在尝试获取的页面只包含一个json对象,如下所示:

{
  "value" : "false",
  "timestamp" : "2017-03-06T14:40:40Z"
}

2 个答案:

答案 0 :(得分:4)

我有几个luasec examples in my blog post;假设你安装了luasec,那么下面这么简单的东西应该可以工作:

require("socket")
local https = require("ssl.https")
local body, code, headers, status = https.request("https://www.google.com")
print(status)

将http请求发送到端口443(不使用luasec)不会起作用,因为http库不知道需要进行任何握手和加密步骤。

如果您有特定错误,您应该描述它们是什么,但上述情况应该有效。

答案 1 :(得分:1)

试试这段代码:

local https = require('ssl.https')
https.TIMEOUT= 10 
local link = 'http://www.example.com'
local resp = {}
local body, code, headers = https.request{
                                url = link,
                                headers = { ['Connection'] = 'close' },        
                                sink = ltn12.sink.table(resp)
                                 }   
if code~=200 then 
    print("Error: ".. (code or '') ) 
    return 
end
print("Status:", body and "OK" or "FAILED")
print("HTTP code:", code)
print("Response headers:")
if type(headers) == "table" then
  for k, v in pairs(headers) do
    print(k, ":", v)        
  end
end
print( table.concat(resp) )

在请求表中获取json文件集MIME类型: content_type =' application / json'

 body, code, headers= https.request{
    url = link,
    filename = file,
    disposition  = 'attachment',         -- if attach
    content_type = 'application/json',
    headers = { 
                ['Referer'] = link,
                ['Connection'] = 'keep-alive'
                    },         
    sink = ltn12.sink.table(resp)    
 }