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.
1 parent 7a85c39 commit 3768aa7Copy full SHA for 3768aa7
docs/httpclient.rst
@@ -27,12 +27,12 @@ WiFiClientSecure documentation for more details.
27
28
// Error checking is left as an exercise for the reader...
29
HTTPClient https;
30
- https.setInsecure(); // Use certs, but do not check their authenticity
+ https.setInsecure(); // Use certs, but do not check their authenticity
31
if (https.begin("https://my.secure.server/url")) {
32
- if (http.GET() > 0) {
33
- String data = http.getString();
+ if (https.GET() > 0) {
+ String data = https.getString();
34
}
35
- http.end();
+ https.end();
36
37
38
Unlike the ESP8266 and ESP32 ``HTTPClient`` implementations it is not necessary
0 commit comments