-
Hello, I've been using a simple firebase realtime database example to check a stored value which was working perfectly. However, recently the authTask connecting has been timing out. The esp32 has the correct email, password, and root cert and is able to connect to the internet. Event task: 🔐 authTask, msg: authenticating, code: 7 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
The issue is your WiFiClientSecure or your network. |
Beta Was this translation helpful? Give feedback.
-
The delay function and blocking code are interrupted the async and auth tasks handler. You should avoid it otherwise use the library in await mode instead. |
Beta Was this translation helpful? Give feedback.
The delay function and blocking code are interrupted the async and auth tasks handler. You should avoid it otherwise use the library in await mode instead.