http.post()
执行HTTP POST请求。 请注意,不支持并发请求。
Syntax
http.post(url, headers, body, callback)
Parameters
url
要获取的URL,包括http://或https://前缀
headers
要附加的可选附加标题,包括\ r \ n; 可能是空
body
post 的主体; 必须已经以适当的格式编码,但可能为空
callback
收到响应或发生错误时要调用的回调函数; 它使用参数status_code,body和headers调用。 如果出现错误,则status_code设置为-1。
Returns
nil
Example
http.post('http://httpbin.org/post',
'Content-Type: application/json\r\n',
'{"hello":"world"}',
function(code, data)
if (code < 0) then