I am working on a simple sign up and login form with Firebase. I connected firebase properly, set up sign-up method to "Email\password" and enable them.
But it encounters "Fire base permission denied" error, as soon as I connect my app on MIT AI2 Companion.
First I tried the following rule: {
"rules": {
"Users": {
"$email": {
".read": "auth != null && auth.token.email.replace('.', '') === $email",
".write": "auth != null && auth.token.email.replace('.', '') === $email"
}
}
}
}