Firebase Permission Denied.Error: PERMISSION_DENIED: Permission denied firebased

I was facing similar issue and found out that this error was due to incorrect rules set for read/write operations for real time database. By default google firebase nowadays loads cloud store not real time database. We need to switch to real time and apply the correct rules.
enter image description here
As we can see it says cloud Firestore not real time database, once switched to correct database apply below rules:
{
   "rules": {
       ".read": true,
       ".write": true
     }
 }

Comments

Popular posts from this blog

Provision AWS EC2 Instance and RDS with Terraform, and Deploy Spring Boot App to EC2 Instance via GitHub Action Pipeline

JQuery UI Autocomplete, custom HTML structure for result?

Easy Ui Jquery easyui-textbox change onChange event