1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-08-16 21:41:56 +03:00
This commit is contained in:
Sandeep Mistry
2019-01-22 12:04:13 -05:00
committed by Sandeep Mistry
parent 0009b3b70d
commit 3df4990ed3
7 changed files with 7 additions and 7 deletions

View File

@@ -67,7 +67,7 @@ void loop() {
// read the status code and body of the response // read the status code and body of the response
int statusCode = client.responseStatusCode(); int statusCode = client.responseStatusCode();
String response = client.responseBody(); String response = client.responseBody();
Serial.print("Status code: "); Serial.print("Status code: ");
Serial.println(statusCode); Serial.println(statusCode);

View File

@@ -65,7 +65,7 @@ void loop() {
// read the status code and body of the response // read the status code and body of the response
int statusCode = client.responseStatusCode(); int statusCode = client.responseStatusCode();
String response = client.responseBody(); String response = client.responseBody();
Serial.print("Status code: "); Serial.print("Status code: ");
Serial.println(statusCode); Serial.println(statusCode);

View File

@@ -56,7 +56,7 @@ void loop() {
// read the status code and body of the response // read the status code and body of the response
int statusCode = client.responseStatusCode(); int statusCode = client.responseStatusCode();
String response = client.responseBody(); String response = client.responseBody();
Serial.print("Status code: "); Serial.print("Status code: ");
Serial.println(statusCode); Serial.println(statusCode);

View File

@@ -51,7 +51,7 @@ void loop() {
// read the status code and body of the response // read the status code and body of the response
int statusCode = client.responseStatusCode(); int statusCode = client.responseStatusCode();
String response = client.responseBody(); String response = client.responseBody();
Serial.print("Status code: "); Serial.print("Status code: ");
Serial.println(statusCode); Serial.println(statusCode);

View File

@@ -54,7 +54,7 @@ void loop() {
// read the status code and body of the response // read the status code and body of the response
int statusCode = client.responseStatusCode(); int statusCode = client.responseStatusCode();
String response = client.responseBody(); String response = client.responseBody();
Serial.print("Status code: "); Serial.print("Status code: ");
Serial.println(statusCode); Serial.println(statusCode);

View File

@@ -54,7 +54,7 @@ void loop() {
// read the status code and body of the response // read the status code and body of the response
int statusCode = client.responseStatusCode(); int statusCode = client.responseStatusCode();
String response = client.responseBody(); String response = client.responseBody();
Serial.print("Status code: "); Serial.print("Status code: ");
Serial.println(statusCode); Serial.println(statusCode);

View File

@@ -77,4 +77,4 @@ void loop() {
} }
Serial.println("disconnected"); Serial.println("disconnected");
} }