javascript – Firebase UID总是28个字符?

前端之家收集整理的这篇文章主要介绍了javascript – Firebase UID总是28个字符?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为Firebase项目创建安全规则,并希望将UIDstring.length == 28添加到我的数据库规则中.我的所有用户UID都是28个字符,但我想检查它们是否可以更长或更短?

谢谢

解决方法

Firebase开发人员在他们的论坛上有 this to say

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.

所以,换句话说,你所建议的将来可能会或可能不会失败,所以你可能应该找到一种不同的实现方式,这种方式更具有前瞻性.

原文链接:https://www.f2er.com/js/155381.html

猜你在找的JavaScript相关文章