HttpPost
Perform a synchronous HTTP POST with a raw payload.
Last updated
Perform a synchronous HTTP POST with a raw payload.
Last updated
local payload = '{"x":1}'
local st, body = Susano.HttpPost("https://httpbin.org/post", payload)
if not st then
print("POST failed:", body)
else
print("POST", st, #body)
end