Lua使用luasocket http请求例子

Lua使用luasocket http请求例子,第1张

概述local http=require("socket.http"); local request_body = [[login=user&password=123]] local response_body = {} local res, code, response_headers = http.request{ url = "http://httpbin.org/p
local http=require("socket.http");  local request_body = [[login=user&password=123]]  local response_body = {}  local res,code,response_headers = http.request{      url = "http://httpbin.org/post",method = "POST",headers =        {            ["Content-Type"] = "application/x-www-form-urlencoded";            ["Content-Length"] = #request_body;        },source = ltn12.source.string(request_body),sink = ltn12.sink.table(response_body),}  print(res)  print(code)  if type(response_headers) == "table" then    for k,v in pairs(response_headers) do      print(k,v)    end  end  print("Response body:")  if type(response_body) == "table" then    print(table.concat(response_body))  else    print("Not a table:",type(response_body))  end


http://pyfpdf.readthedocs.io/projects/wiki/en/latest/language/lua/http.HTML

总结

以上是内存溢出为你收集整理的Lua使用luasocket http请求例子全部内容,希望文章能够帮你解决Lua使用luasocket http请求例子所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1240807.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存