You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 17, 2025. It is now read-only.
I'm trying to add a timestamp with some other data.
If I run:
Firebase.pushJSON(fbdo, "/localWeather", "{\"temp\":\"" + temp + "\",\"humidity\":\"" + humidity + "\"}")
The data is uploaded successfully:

However, when I try to add a timestamp to the JSON only the timestamp is uploaded:
Firebase.pushJSON(fbdo, "/localWeather", "{\"temp\":\"" + temp + "\",\"humidity\":\"" + humidity + "\",\".sv\": \"timestamp\"" + "}")
My expected outcome is something like this for each entry:
{ "x":{ "temp":"23c", "humidity":"50%", "timestamp":"[unix timestamp]" } }
My question I guess is what am I doing wrong here?
The text was updated successfully, but these errors were encountered: