Firebase JSON access permission denied even already login with Firebase Auth -


i make firebase auth email , password , can retrieve data. but, when access json file directly web browser, shows me permission denied login. use standard firebase rules, normal ?

`    {       "rules": {           ".read": "auth != null",           ".write": "auth != null"         }     }` 

you need put access token in url.

example :

https://[project_id].firebaseio-demo.com/users/jack/name.json?access_token=<token> 

here documentation.


Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

Ansible warning on jinja2 braces on when -