要检查用户是否通过Google登录登录,我正在使用此代码 -
"test": {
".read": "(auth != null) && (auth.provider == 'google')",
".write": "(auth != null) && (auth.provider == 'google')"
}
如何编写安全规则以检查用户是否通过电话身份验证登录?
答案 0 :(得分:2)
这应该允许访问通过电话提供商验证的用户:
"test": {
".read": "(auth != null) && (auth.provider == 'phone')",
".write": "(auth != null) && (auth.provider == 'phone')"
}