mobizt / Firebase-ESP32

[DEPRECATED]🔥 Firebase RTDB Arduino Library for ESP32. The complete, fast, secured and reliable Firebase Arduino client library that supports CRUD (create, read, update, delete) and Stream operations.
MIT License
415 stars 118 forks source link

What do you call "Path" #8

Closed LesDeuxM closed 5 years ago

LesDeuxM commented 5 years ago

Hello, Could you tell me what does the String "path" means ? I tried to let it empty, to put the database name or a variable name, but nothing's working.. I get "Path xxxx is not exist"

Thanks in advance for your help.

mobizt commented 5 years ago

If you mean function Firebase.pathExist , path parameter is the full node or key name which is the same as path in other functions. If path e.g. "/any/path/in/db" is not exist, the function returns false. Path in all functions should begin with slash "/".

LesDeuxM commented 5 years ago

Ok, thanks a lot for your fast answer. I finally solved my issue. In the "FIREBASE_HOST", I had "https://xxxxxxx.firebaseio.com/" instead of "xxxxxxx.firebaseio.com". With the new expression, my path is found and your library works !