File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ char response[256];
2525Result result = http.get("your.api.com", response);
2626
2727Serial.println(response);
28- // This prints the response body. Note that the response have to be a valid JSON
2928
3029http.disconnect();
3130
@@ -45,7 +44,6 @@ char response[256];
4544Result result = http.post("your.api.com", "{\"date\":\"12345678\"}", response);
4645
4746Serial.println(response);
48- // This prints the response body. Note that the response have to be a valid JSON
4947
5048http.disconnect();
5149```
@@ -92,4 +90,4 @@ In order to perform a request, the library follows these steps:
9290## Future improvements
9391
9492- Support of HardwareSerial.
95- - Support of more content types, not only JSON (application/json).
93+ - Support of more content types, not only JSON (application/json).
You can’t perform that action at this time.
0 commit comments