私はnodejs/expressjsバックエンドサービスを持っており、エンドポイントを使用してデバイスを登録したいと考えています。私はいくつかのJSONエンコードされたデータで私のサーバーにPOST要求を送る必要があります。私はこれをやるのに困っている。私は正常にGET要求を送信することができますし、私はサーバーから応答を取得しますが、私はPOST要求を送信しようとすると私は応答を取得しません。ここで私はそれを行う方法は次のとおりです。ESP8266WiFiライブラリを使用したHTTP POST要求の送信
//Make a post request
void postRequest(const char* url, const char* host, String data){
if(client.connect(host, PORT)){
client.print(String("POST ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
//"Connection: close\r\n" +
"Content-Type: application/json\r\n" +
"Content-Length: " + data.length() + "\r\n" +
data + "\n");
//Delay
delay(10);
// Read all the lines of the reply from server and print them to Serial
CONSOLE.println("Response: \n");
while(client.available()){
String line = client.readStringUntil('\r');
CONSOLE.print(line);
}
}else{
CONSOLE.println("Connection to backend failed.");
return;
}
}