import console; import inet.http; var http = inet.http(); http.addHeaders = { ["Content-Type"] = 'application/json' } var html,err,errCode = http.post("http://eu.httpbin.org/post" ,{a=1,b=2}); http.close(); console.log( html ) console.pause()