Skip to content

Instantly share code, notes, and snippets.

View radiolocus-manoj's full-sized avatar

radiolocus-manoj

View GitHub Profile
@radiolocus-manoj
radiolocus-manoj / post.lua
Created April 29, 2019 03:47 — forked from defp/post.lua
use luasocket send post data
#!/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 =