Espruino HTTP POST
Espruino で HTTP GET リクエストは例があるので簡単にできる。POST でデータ送信する例がなかったので、調べたメモ。
var data = JSON.stringify({"metrics1":10.0});
var request = require("http").request(
{host:"harvest.soracom.io", method:"POST", path:"/", headers:{
"content-type":"application/json",
"content-length": data.length,
"connection":"close"
}},
response=>{
var content = "";
response.on("data", data=>{
content += data;
});
response.on("close", ()=>{
console.log(content);
});
response.on("error", err=>{
console.log("error", err);
});
});
request.write(data);
request.end();
Content-length
は、サーバ側の実装の都合上、たいてい必要になる。Connection: close
は、開発時サーバが single thread の時のための安全設定。
Author And Source
この問題について(Espruino HTTP POST), 我々は、より多くの情報をここで見つけました https://qiita.com/kwi/items/55b51e5bcc3cdfffbc46著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .