Firebase Auth problem

Need some guidance here.
We have a flow and writing and retriving data to a Firebase realtime database.

  1. the rules have been set initially to 'no securit' for testing and everything works fine. ( reading and writing to the Firebase)
    {
    "rules": {
    ".read": true,
    ".write": true
    }
    }

  2. We have added email authentication to Firebase and changed the rules
    {
    "rules": {
    ".read": "auth != null",
    ".write": "auth != null"
    }
    }

We are using node-red-firebase-contrib node. And have set the auth method = email and entered the correct passowrd.

However, we always get this debug note. Any ideas?

Received msg before firebase modify node was ready. Not processing: { "_msgid": "26870e3a.fd3f72", "topic": "", "payload": 1595016544084}

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.