Lua使用luasocket http请求例子

Lua使用luasocket http请求例子

#!/usr/bin/env lua
  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

其中code是错误码,返回对应错误的可读信息,如超时返回:timeout;所以可以根据这个code码针对不同的结果/错误信息进行不同的处理。


版权声明:本文为mihupengpeng原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。