We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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]" } }
{ "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:
No branches or pull requests
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: