android - Firebase data for all users without authorizing -


is possible create parts of data available users list of shop products without authorizing authorized users can change information products or create new ones?

you can it, declare following rules @ specific location

{   "rules": {     "products":{       ".read": "true",     ".write": "auth.uid!=null"     }    } } 

only authurized users can write data.


Comments

Popular posts from this blog

linux - Could not find a package configuration file provided by "Qt5Svg" -

simple.odata.client - Simple OData Client Unlink -