用lua访问http

首先你需要lua, 这自不必说。

然后你需要luasocket。 下载地址http://files.luaforge.net/releases/luasocket/luasocket

不过luasocket好像很久没有更新了,也只支持到lua5.1。

local http = require("socket.http")
local ltn12 = require("ltn12")

function http.get(u)
   local t = {}
   local r, c, h = http.request{
      url = u,
      sink = ltn12.sink.table(t)}
   return r, c, h, table.concat(t)
end

url = "http://www.baidu.com"
r,c,h,body=http.get(url)
if c~= 200 then
    return
end
print(body)

Posted by Debug 2013年3月21日 13:45