1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

Adding comment to ignore SSL in sample code. (#7994)

This commit is contained in:
Adam Horvath
2021-05-16 02:24:33 +10:00
committed by GitHub
parent 6da2bfb664
commit e9820c1f27

View File

@ -44,6 +44,8 @@ void loop() {
std::unique_ptr<BearSSL::WiFiClientSecure>client(new BearSSL::WiFiClientSecure);
client->setFingerprint(fingerprint);
// Or, if you happy to ignore the SSL certificate, then use the following line instead:
// client->setInsecure();
HTTPClient https;