We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I had a problem with ESP32. The application stops when it tries to print a response that is empty (204). If it's not empty there is no problem.
I solved with this workaround: // String response = http.getString(); // Serial.println(" \"" + response + "\"");
// String response = http.getString();
// Serial.println(" \"" + response + "\"");
Maybe a problem with "HTTPClient.h" name? #if defined(ESP8266) #include <ESP8266HTTPClient.h> #elif defined(ESP32) #include <WiFi.h> #include <HTTPClient.h> #endif
#if defined(ESP8266)
#include <ESP8266HTTPClient.h>
#elif defined(ESP32)
#include <WiFi.h>
#include <HTTPClient.h>
#endif
Thanks, E_R
The text was updated successfully, but these errors were encountered:
This should already be fixed by #26
Sorry, something went wrong.
No branches or pull requests
Hello,
I had a problem with ESP32.
The application stops when it tries to print a response that is empty (204).
If it's not empty there is no problem.
I solved with this workaround:
// String response = http.getString();
// Serial.println(" \"" + response + "\"");
Maybe a problem with "HTTPClient.h" name?
#if defined(ESP8266)
#include <ESP8266HTTPClient.h>
#elif defined(ESP32)
#include <WiFi.h>
#include <HTTPClient.h>
#endif
Thanks,
E_R
The text was updated successfully, but these errors were encountered: