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

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -