I am creating security rules for my Firebase project and wanted to add UIDstring.length == 28
to my database rules. All of my users UIDs are 28 characters, but I wanted to check if they can be any longer or shorter?
Thanks
The uid of type string is used to assign to the newly created user. Must be a string between 1 and 128 characters long, inclusive. If not provided, a random uid will be automatically generated.
A Universal Unique Identifier (UUID) is a 128-bit number used to uniquely identify some object or entity on the Internet.
The user's Firebase UID. This is unique within a project. Dictionary of all the identities that are associated with this user's account.
UIDs in firebase are UUIDs as well. UIDs are nowadays indeed UUIDs.
A Firebase developer had this to say on their forums:
I would not rely on a constant length for the UIDs forever. We chose the current value because it provides a big enough ID space while still being under the 36-character limit for Firebase Analytics user properties.
So, in other words, what you're suggesting may or may not fail in the future, so you probably should find a different way of implementing it that's more future-proof.
The uid of type string is used to assign to the newly created user. Must be a string between 1 and 128 characters long, inclusive. If not provided, a random uid will be automatically generated.
https://firebase.google.com/docs/auth/admin/manage-users
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With