-
Hello, the code below had worked before (authentication, initialization, updates to the realtime DB, etc. I actually got the DB updated but now I keep getting the following errors. Can you help? I'm using Visual Source and the .ini file has the following entry: -->After calling: Firebase.begin(&config, &auth); Here's the code: // Assign the user sign in credentials // Assign the RTDB URL (required) Firebase.reconnectWiFi(true); oWriteFBDO.setResponseSize(4096); // Assign the callback function for the long running token generation task */ // Assign the maximum retry of token generation // Initialize the library with the Firebase authen and config // Reconnect the wi-fi // Start streaming |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I recommended you should update the library to latest version (4.2.6) and your device (ESP8266 or ESP32) toolchains in PlatformIO. The connection refused error is because there is no response from your router or WiFI AP even it is already connected. Please change your AP or reset the router or try testing to connect to internet with Ping or examples in Arduino examples using |
Beta Was this translation helpful? Give feedback.
I recommended you should update the library to latest version (4.2.6) and your device (ESP8266 or ESP32) toolchains in PlatformIO.
The connection refused error is because there is no response from your router or WiFI AP even it is already connected.
Please change your AP or reset the router or try testing to connect to internet with Ping or examples in Arduino examples using
WiFIClientSecure
to connect to secure server.