当规则通过用户身份验证更新时权限被拒绝

发布于 2025-01-11 12:57:47 字数 589 浏览 0 评论 0原文

这是我真正的时间数据库。

输入图片这里的描述

这是我用来创建数据库的代码。

 const db = firebase.database()
 const frRef = db.ref('Foreign/' + UserId);

frRef.set({
     });
   });

` 这是我在这里应用的规则。

         "foreign": {
  ".indexOn": ["UserId"],
  "$UserId": {
    ".read": "auth.UserId == $UserId",
    ".write": "auth.UserId == $UserId"
  } },

但我收到错误“权限被拒绝”。实施中的任何错误。我只想要具有这些用户ID的用户,例如99663384,只需要读取和写入数据。任何帮助将不胜感激。谢谢。

This is my real rime database.

enter image description here

This is the code i used to create db.

 const db = firebase.database()
 const frRef = db.ref('Foreign/' + UserId);

frRef.set({
     });
   });

`
this is the rules i applied here.

         "foreign": {
  ".indexOn": ["UserId"],
  "$UserId": {
    ".read": "auth.UserId == $UserId",
    ".write": "auth.UserId == $UserId"
  } },

But i got the error "permission denied." any wrong with the implementation. i want only the users with these userids like 99663384, needs to read and write data only . any help would be appreciated. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文