Are you guys planning on finishing this rules series? It's been incredibly helpful so far!
@agung_laksana5 жыл бұрын
Thanks for this series, Doug! Still waiting for the next video, it has been 2.5 months already. I hope Firebase team can finish this series ASAP since firebase security rules is really important 🙂
@Algardraug3 жыл бұрын
It's been 1,5 years now...
@DedicatedManagers4 жыл бұрын
I only see 5 videos in this playlist. In the 5th video Doug says more are to come. Its been 10 months since the last video. Was this series abandoned?
@nikhi15 жыл бұрын
Thanks for defining all the types. A cheatsheet would be really handy.
@dougstevenson37695 жыл бұрын
I always have the API documentation handy, which briefly discusses each of the types and their operations. The team is looking to improve this going forward, but it is definitely your best reference today: firebase.google.com/docs/reference/rules/rules
@conormcelvaney5 жыл бұрын
Thanks Doug, wonderfully explained as usual
@BogacGuven5 жыл бұрын
As always, very informative. Thank you Doug 👍
@ongcz5 жыл бұрын
We need a real Example.
@EagerEggplant2 жыл бұрын
This is so informative! I've wasted so much time on documentation and stackoverflow until the latter lead me here!
@Firebase2 жыл бұрын
Glad it was helpful!
@dusxks50775 жыл бұрын
Is there a way to get the element of list arrayUnion? ex. get userUID from security rules when client does set("userUID": FieldValue.arrayUnion([userUID]) I tried request.resource.data.userUID. but I could not get the arrayUnion element value.
@vrambassador4 жыл бұрын
And now how the Syntax of the Rules look?
@CodeWithAshishKakkad5 жыл бұрын
Nice Video About Firebase 👌
@SusanthCom3 жыл бұрын
Please update this list. No update from past 1 year 🙈🙈
@yankee-in-london5 жыл бұрын
There were several references to Firestore in this video and I started to wonder if the descriptions on rules syntax and API were exclusive to Firestore. I am using the Firebase Real Time DB and wanted to be sure I should consider this a useful resource.
@dougstevenson37695 жыл бұрын
Most should apply to both Cloud Firestore and Cloud Storage. Cloud Storage uses path types to determine which object is being accessed. Cloud Firestore uses path types when document references are involved. That's the main difference.
@BogacGuven5 жыл бұрын
The title on video thumbnail is for Firebase as a product, but this video is focused on Firestore Db security rules (continuation of last few videos in this series). You should not consider this for Firebase Real Time Db.
@zzej5 жыл бұрын
Am I the only one that finds the Storage API a bit confusing, You can get an 'itemRef' or a 'listRef' or a 'itemRef' and to get the url of the file you have to make weird forEach of nested promises. I just want the folder list in an array of objects with the url provided all with one call that returns a promise like dirName.forEach(gimmeAllFiles => {}); please thanks.