Unable to connect NodeMCU with Firebase as console shows setting /number failed: each time No updation on firebase as well.
or should I change the cloud server?
The Firebase Arduino library has a reference to a fingerprint of the Firebase SSL certificate. This fingerprint may not match the current fingerprint.
This fingerprint is in FirebaseHttpClient.h
(typically in C:\Users\<User>\Documents\Arduino\libraries\firebase-arduino-<version>\src\FirebaseHttpClient.h
).
To find and change the current fingerprint:
03:9E:4F:E6:83:FC:40:EF:FC:B2:C5:EF:36:0E:7C:3C:42:20:1B:8F
C:\Users\<User>\Documents\Arduino\libraries\firebase-arduino-<version>\src\FirebaseHttpClient.h
kFirebaseFingerprint
with the fingerprint (without colons)e.g. the following fingerprint works at this point of time:
static const char kFirebaseFingerprint[] =
"03 9E 4F E6 83 FC 40 EF FC B2 C5 EF 36 0E 7C 3C 42 20 1B 8F";
See https://github.com/FirebaseExtended/firebase-arduino/issues/328