Firebase数据库安全规则,用于电话验证

时间:2017-10-27 07:14:09

标签: firebase firebase-realtime-database firebase-authentication

要检查用户是否通过Google登录登录,我正在使用此代码 -

"test": {
  ".read": "(auth != null) && (auth.provider == 'google')",
  ".write": "(auth != null) && (auth.provider == 'google')"
}

如何编写安全规则以检查用户是否通过电话身份验证登录?

1 个答案:

答案 0 :(得分:2)

这应该允许访问通过电话提供商验证的用户:

"test": {
  ".read": "(auth != null) && (auth.provider == 'phone')",
  ".write": "(auth != null) && (auth.provider == 'phone')"
}