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

How to use DbFunctions.TruncateTime

Microsoft Access Connectivity from C#

Tool 'dotnet-ef' failed to install. dotnet core