Dear Sir/Madam,
I was trying to make bare minimum Firebase data send and stream with Nodemcu following your booklet.
I get permission denied while sending temperature and Humidity data to firebase. I get the correct UID on the Serial port.
I have created the correct nodes below is my JSON file.
{
“PrakashData” : {
“My_UID” : {
“outputs” : {
“digital” : {
“2” : 0,
“12” : 1
},
“message” : “I love this app”,
“pwm” : {
“13” : 20,
“14” : 80
}
},
“sensor” : {
“humidity” : 52.50,
“temperature” : 25.00
}
}
}
}
Code at Pastebin
Firebase_NodeMCU – Pastebin.com
Tried Once again:
same issue
Hi.
What are your database rules?
Are you using the right database URL in your project?
Sometimes people create several projects on Firebase, and then, end up using the wrong URL or API key.
What is the exact error that you get?
REgards,
Sara
Dear Madam,
Yes. You correctly pointed out the issue.
There was on letter “s” in “Usersdata” was missing in my JSON.
Thank you. It has resolved!