且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Phonegap移动应用程序中的Firebase URL安全

更新时间:2023-02-26 22:18:28

您的正确说法是任何人都可以找出您的Firebase URL.但是,这并非特定于PhoneGap.这是Firebase工作方式的关键部分.这对您来说应该不是问题.您可以使用我们的安全规则API 来防止恶意用户读取或写入Firebase数据. auth变量对于您的用例应该很方便.

You are correct in saying that anybody can figure out your firebase URL. This is not specific to PhoneGap however. This is a key part of how Firebase works. And this should not be a problem for you. You can use our security rules API to prevent malicious users from reading or writing your Firebase data. The auth variable should come in handy for you for your use case.

我不确定我是否理解"firebase中经过身份验证的域安全性"的含义. Firebase安全性与客户端无关,并在服务器端强制实施.因此,PhoneGap的安全性不应该低于其他平台.

I am not sure I understand what you mean by "authenticated domain security in firebase." Firebase security is client-independent and is enforced server-side. So, PhoneGap should be no less secure than other platforms.