Or you could put all data of a user into a JSON structure, then save it by rex_firebase plugin.
Hi,
Thanks for the hints <img src="{SMILIES_PATH}/icon_e_wink.gif" alt=";)" title="Wink">
I'm using the Firebase plugin, Authentifaction plugin, Query Plugin and the Firebase API 3 plugin. I try to access the Database after the login was successfully.
{
"rules": {
"users": {
"$user_id": {
// grants write access to the owner of this user account
// whose uid must exactly match the key ($user_id)
".write": "$user_id === auth.uid",
".read": "auth != null && auth.uid == $user_id"
}
}
}
} [/code:u5dtybg2]
This are my rules, but with this rules the access will be denied.
[url=https://firebase.google.com/docs/database/security/user-security]https://firebase.google.com/docs/databa ... r-security[/url]
Any idea why this happens?
Thank you!