Are Firebase Object Keys Guessable?
问题 Say I have data like so: users{ $authId: { name:"", propertiesById:{ uniqueId1:true, uniqueId2:true } } }, properties:{ uniqueId1:{ key:val }, uniqueId2:{ key:val } } Assuming that I have the proper rules in place for users to be able to only read/write their own user object, how do I go about reading my properties safely? I know that in rules, I can go to root, find the user object and ensure that the property that I'm trying to read exists in the propertiesById, but that seems like it would