mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-11 15:22:13 +03:00
Adding comment to ignore SSL in sample code. (#7994)
This commit is contained in:
@ -44,6 +44,8 @@ void loop() {
|
|||||||
std::unique_ptr<BearSSL::WiFiClientSecure>client(new BearSSL::WiFiClientSecure);
|
std::unique_ptr<BearSSL::WiFiClientSecure>client(new BearSSL::WiFiClientSecure);
|
||||||
|
|
||||||
client->setFingerprint(fingerprint);
|
client->setFingerprint(fingerprint);
|
||||||
|
// Or, if you happy to ignore the SSL certificate, then use the following line instead:
|
||||||
|
// client->setInsecure();
|
||||||
|
|
||||||
HTTPClient https;
|
HTTPClient https;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user