1 Star 0 Fork 6

dazuo0312/Lua808

forked from Lawson1990s/Lua808 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
http_demo.lua 4.20 KB
一键复制 编辑 原始数据 按行查看 历史
MicroScale 提交于 2022-12-22 15:38 . init
local libnet = require "libnet"
-- local function downloadFile(code, headers, body)
-- log.info("http.get", code, json.encode(headers), body)
-- local r = io.writeFile("/data.txt", body)
-- if r then
-- log.info("文件写入成功")
-- sys.publish("WRITE_FILE_SUCCESS")
-- else
-- log.info("文件写入失败")
-- end
-- end
-- Download File task
sys.taskInit(function ()
sys.wait(5000)
log.info("------下载文件------")
local path = "/data.txt"
-- GET请求,但下载到文件
http.request(
"GET",
"http://cdn.openluat-luatcommunity.openluat.com/attachment/20220825134126812_text.txt").cb
(
function (code, headers, body)
log.info("http.get", code, json.encode(headers), body)
local r = io.writeFile("/data.txt", body)
if r then
log.info("文件写入成功")
sys.publish("WRITE_FILE_SUCCESS")
else
log.info("文件写入失败")
end
end
)
sys.waitUntil("WRITE_FILE_SUCCESS")
local data = io.readFile(path)
if data then
log.info("fs", "data", data, data:toHex())
else
log.info("打开文件失败")
end
-- POST and download, task内的同步操作
-- local opts = {} -- 额外的配置项
-- opts["dst"] = "/data.bin" -- 下载路径,可选
-- opts["adapter"] = "" -- 使用哪个网卡,可选
-- local req_headers = {}
-- req_headers["Content-Type"] = "application/json"
-- local code, headers, body = http.request("POST","http://site0.cn/api/httptest/simple/date",
-- json.encode(req_headers), -- 请求所添加的 headers, 可以是nil
-- "",
-- opts
-- ).wait()
-- log.info("http.post", code, headers, body) -- 只返回code和headers
end)
-- [[
sys.taskInit(
function()
sys.wait(3000)
log.info("mem.lua", rtos.meminfo())
log.info("mem.sys", rtos.meminfo("sys"))
-- GET请求
log.info("------GET请求------")
local code, headers, body = http.request("GET","https://www.baidu.com/").wait()
log.info("http.get", code, json.encode(headers), body)
sys.wait(2000)
-- POST请求后以回调函数方式处理的例子。
log.info("------POST请求------")
local req_headers = {}
req_headers["Content-Type"] = "application/json"
local body = json.encode({name="LuatOS"})
http.request("POST","http://site0.cn/api/httptest/simple/date",
req_headers,
body -- POST请求所需要的body, string, zbuff, file均可
).cb(function(code, headers, body)
log.info("http.post", code, json.encode(headers), body)
end)
end
)
-- ]]
-- sys.taskInit(
-- function()
-- sys.wait(3000)
-- -- while 1 do
-- log.info("mem.lua", rtos.meminfo())
-- log.info("mem.sys", rtos.meminfo("sys"))
-- local code, headers, body = http.request("GET","https://www.baidu.com/").wait()
-- log.info("http.get", code, json.encode(headers), body)
-- -- -- local code, headers, body = http.request("GET","http://site0.cn/api/httptest/simple/time").wait()
-- -- -- log.info("http.get", code, json.encode(headers), body)
-- -- sys.wait(2000)
-- -- -- POST request
-- -- local req_headers = {}
-- -- req_headers["Content-Type"] = "application/json"
-- -- local body = json.encode({name="LuatOS"})
-- -- local code, headers, body = http.request("POST","http://site0.cn/api/httptest/simple/date",
-- -- req_headers,
-- -- body -- POST请求所需要的body, string, zbuff, file均可
-- -- ).cb(function (code, headers, body)
-- -- log.info("http.post", code, headers, body)
-- -- end)
-- -- log.info("http.post1", code, headers, body)
-- -- end
-- end
-- )
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dazuo0312/lua808.git
git@gitee.com:dazuo0312/lua808.git
dazuo0312
lua808
Lua808
master

搜索帮助