Тёмный
No video :(

Introduction to Firebase Security Rules - Firecasts 

Firebase
Подписаться 383 тыс.
Просмотров 61 тыс.
50% 1

Опубликовано:

 

25 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 34   
@raymondmichael4987
@raymondmichael4987 5 лет назад
Very informative, clear and to the point. Thanks guys Greetings from Tanzania 🇹🇿
@vivekbaranwal
@vivekbaranwal 5 лет назад
please start the series asap and thanks alot really helpful 🙂
@yoapps137
@yoapps137 5 лет назад
I'm so glad you're going to be doing a series on this. After all the tough times I have had over the years with Firebase security. I could request you to make 1 thing easier by way of example. I see loads of developers getting stuck at using the simulator to simulate a token with Custom Claims. I mean an example of the JSON that needs to be put in that simulators textbox, that acts as the token carrying the Custom Claims. And i have 1 question: How do we understand the charges for Rules ?.. I mean we have an idea about Database Read/Writes, but Rules? Is it cheaper than using a CloudFunction to Validate or restrict data?
@belqisshida5345
@belqisshida5345 4 года назад
Is Cloud Firestore a good selection for a bank account? Can it be safe and reliable to save people's money which is a number to the Cloud Firestore? My concern is reliability and security. Any suggestions?
@diliupg
@diliupg 4 года назад
Thanks. Very well presented.
@BaRzOmk
@BaRzOmk 5 лет назад
A nice video as always @CodingDoug we missed you dude... Please could you make us, real world app with vue js
@anudeepananth
@anudeepananth 4 года назад
Been a year and we still can't write security rules for cloud storage based on the data in Firestore
@TroenderTass
@TroenderTass 3 года назад
its firebase, what do you expect. it is garbage. why is this a thing
@Sanjay_Gangwar
@Sanjay_Gangwar 4 года назад
Thanks really nice for everyone ...
@waseyhasankhan8167
@waseyhasankhan8167 2 года назад
very informative..
@wilsondouglas1546
@wilsondouglas1546 5 лет назад
waiting to get into this
@Flutterdev6391
@Flutterdev6391 3 года назад
Thanks sir
@rara737
@rara737 5 лет назад
love this
@HadiPrayitnoSPdI
@HadiPrayitnoSPdI 9 месяцев назад
Hi friends, how do you secure data as follows. I have notes product:{ data1: { idMaker: 123abc, .... }, data2: { idMaker: 123abc, .. }, ... } .What I want: all users can set() provided it has child: "name". and only users whose idUser is the same as idMaker can delete. please answer
@darkarchon78
@darkarchon78 3 года назад
Okay, so why basic security rule examples Google provided don't meet the criteria? I set my database to be readable by anyone, but allow everything else by only authorized users. Yet, I keep getting those warning letters.
@khalidsafir
@khalidsafir 9 месяцев назад
I just wanted to check if you could only allow access to firestore from my app domain using security rules, you say rules do not control that. Thanks. Shame though.
@cryptonative
@cryptonative 5 лет назад
Pro tip: There are cases where the Firestore simulator fails but the client SDKs work.
@dougstevenson3769
@dougstevenson3769 5 лет назад
The team is pretty responsive about fixing those differences. If you report it to Firebase support, they will escalate to engineering if they're able to reproduce it. support.google.com/firebase/contact/support
@ongcz
@ongcz 5 лет назад
Do you have an example thatdeally works?
@CheoWalker
@CheoWalker 5 лет назад
Can we get a video on the emulator?
@dougstevenson3769
@dougstevenson3769 5 лет назад
The local emulator is still in beta, meaning it's likely to change in ways that might break in the future. So, we're going hold off on video content until things settle down, so we don't spin up a bunch of effort on a video that becomes obsolete too soon. (It's time-consuming and expensive to make these things!)
@shuvrodas6576
@shuvrodas6576 2 года назад
What if my rules are published publicly? Will my app become unsafe? Help please .
@sgouri3519
@sgouri3519 3 года назад
i have a application for mobile where the client can registered and login ... i want firebase data only readable and writeable for me non others .. so that i can handle all clients in database .. because i m the owner of my app.. what rules i should set please send me the example ..
@mataal8770
@mataal8770 3 года назад
Hi brother can u help me pls. I have this security rules for an ecommerce site but why is it that the products are not showing unless I do allow access top the shallowest match path. This line below, knowing if I allow read access to this line then everyone can read all my documents even those I want to set private. match /{document=**} { allow read if false; // I have to set this to true before all products for selling by all users are displayed then I cannot do selective securty if I do set it to true since everything is allowed to be read rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read,create,update,delete: if false; match /users/{uid}{ allow read; allow update:if request.auth.uid == uid; match /users/{uid}/products { allow read; allow create: if request.auth.uid != null; match /users/{uid}/products/{product}{ allow read; allow create: if request.auth.uid != null; allow delete,update: if request.auth.uid == uid; } } } } } }
@davidconnelly
@davidconnelly 2 года назад
Look at the view count then look at the number of people leaving comments. What does that tell you?
@kirill4531
@kirill4531 5 лет назад
Great! Could you please aleborate more on how to use anonymous UID? How does the user's UID should look like when he has just started and is in anonymous state? Which ID to use to upload his data to the Real-time DB?
@dougstevenson3769
@dougstevenson3769 5 лет назад
There will be future videos about using the UID, so stay tuned for that. There is just the one UID per Firebase Auth account. It doesn't change if you later allow the user to link another auth provider account to their Firebase Auth account.
@kirill4531
@kirill4531 5 лет назад
@@dougstevenson3769 looking forward for the new videos, thank you
@AngurMia
@AngurMia 5 лет назад
sir, if apk reveres engeenirng is it possible to get google-serice.json file ?
@dougstevenson3769
@dougstevenson3769 5 лет назад
Some of the data from google-services.json is compiled into the app as string resources that get read by the Firebase SDK. It's all essentially public information. As long as you're using Firebase Authentication and security rules properly, there shouldn't be any issues.
@AngurMia
@AngurMia 5 лет назад
@@dougstevenson3769 i am warrid to some one can be change my firebase data if it possible , like - haker devlop new app and make my data change. thanks
@ankit21309
@ankit21309 Год назад
Everything is good about firebase except these rules, hate them.
@anahoua4837
@anahoua4837 5 лет назад
First
Далее
Security Rules deep dive
12:09
Просмотров 17 тыс.
Firestore Security Rules - How to Hack a Firebase App
10:05
API vs. SDK: What's the difference?
9:21
Просмотров 1,4 млн
Microservices with Databases can be challenging...
20:52
SHA: Secure Hashing Algorithm - Computerphile
10:21
Просмотров 1,2 млн
Difference between cookies, session and tokens
11:53
Просмотров 619 тыс.