If the data
of the Firebase Realtime database is not displayed in the Angular page, then
you must first set the ->read rules to true
Read-reading
rights in Firebase
Default rules
are false or now<datetime
Here you can
simply change the value in the text box and activate it with publish
{
"rules": {
".read": true,
".write": "now <
1612306800000", // 2021-2-3
}
}
|