EtherEncLib icon indicating copy to clipboard operation
EtherEncLib copied to clipboard

Send a Response

Open IcaroRios opened this issue 6 years ago • 0 comments

Hi, i'm having a problem to send a response...

This code: ` //MANDA RESPOSTA DA REQUISICAO

lib.print("HTTP/1.1 200 OK");

lib.print("Content-Type: application/json");

lib.print("Content-Length: ");

ret = "{"RESULT": "True"}";

lib.print(ret.length());

lib.print("{"RESULT": "True"}"); ` Should send a response, but do not send...

IcaroRios avatar Mar 05 '18 13:03 IcaroRios