0
votes

We are building a mobile app and would like to use the firebase token id in the rules using ios sdk (as we do in the nodejs functions "admin.auth().verifyIdToken(firebaseIdToken)" )

Should we send the secured token itself in any way and use it in the rule itself or does firebase doing it for us? at the moment my rule is

allow read, update, delete: if request.auth != null && request.auth.uid == userId;

but I'm not sure if it's secured enough, does the ios sdk send the userId in the request or does it use the token and then Firestore translates it to uid?

1

1 Answers

1
votes

The SDK sends the token, and the security rules engine verifies it. The process is secure and can't be faked - that's the whole point of security rules.