I'm looking for a way to get automatically a SHA-1 fingerprint of a certain website with my Arduino.
I'm using esp-8266 Arduino. I have a program that makes an API call every few seconds to a certain website from my Arduino. Because this website is using HTTPS I'm using the WiFiClientSecureBearSSL.h library.
In order to use this library, you must provide the fingerprint SHA-1, the problem is that I need every time the website changes their fingerprint to manually change it in my code.
Is there any way to get the fingerprint automatically?
Thanks