如何防止其他人通过 firebase ref url 使用我的 firebase 数据?
how to prevent others from using my firebase data with firebase ref url?
我正在为我的 android 应用程序使用 firebase 并使用匿名身份验证。现在任何人都可以通过监视请求或对应用程序进行逆向工程来查看 url。
然后用我的 firebase url 制作他自己的应用程序并使用匿名身份验证。那么如何预防呢?
我正在使用匿名身份验证,因此没有人可以使用其余端点。
我已阅读以下内容 post 但我不明白如何防止这种情况发生。
How to prevent other access to my firebase
我的文章是通过邮箱+密码验证的。
我的阅读是通过匿名身份验证的。
您无法阻止其他人看到您的 Firebase url。
Firebase 为您提供了一个很酷的仪表板,您可以从中阻止 non-authorized 人获取您的数据库信息。确保您的 "Security & Rules" 选项卡下有以下代码:
{
"rules": {
// only authenticated users can read or write to my Firebase
".read": "auth !== null",
".write": "auth !== null"
}
}
我正在为我的 android 应用程序使用 firebase 并使用匿名身份验证。现在任何人都可以通过监视请求或对应用程序进行逆向工程来查看 url。 然后用我的 firebase url 制作他自己的应用程序并使用匿名身份验证。那么如何预防呢?
我正在使用匿名身份验证,因此没有人可以使用其余端点。
我已阅读以下内容 post 但我不明白如何防止这种情况发生。
How to prevent other access to my firebase
我的文章是通过邮箱+密码验证的。
我的阅读是通过匿名身份验证的。
您无法阻止其他人看到您的 Firebase url。 Firebase 为您提供了一个很酷的仪表板,您可以从中阻止 non-authorized 人获取您的数据库信息。确保您的 "Security & Rules" 选项卡下有以下代码:
{
"rules": {
// only authenticated users can read or write to my Firebase
".read": "auth !== null",
".write": "auth !== null"
}
}