Provides HTTP client functionality.
Returns: body, status, error
local body, status, err = http.get("https://example.com")Returns: body, status, error
local body, status, err = http.post(
"https://example.com",
'{"hello":"world"}',
{["Content-Type"] = "application/json"}
)