508
Views
2
Comments
[ShoutSystems] permission_denied on firebase event
Question
shoutsystems
Mobile icon
Forge asset by Labs

Hi,

When sending messages I have error in console

FIREBASE WARNING: set at / failed: permission_denied

and another user is not receiving messages until page is reloaded.

Thank you for any advice.


2021-05-05 13-05-18
Mykola (Nick) Tkachenko

Found the solution:)

Have to allow all to use database...

set this in rules tab:

{
  "rules": {
    ".read": true,
    ".write": true
  }
}


2019-03-29 11-49-27
Francisco Afonso

Hi Mykola,

Yes, setting permission rules are mandatory. You don't need to add all permissions to all users as you did, you can configure that, but nice catch! I'll make sure we add this step to the firebase demo module when we implement it.

Thanks!
Regards

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.