gpt4 book ai didi

javascript - 我是否需要为 db.ref ('.info/connected' ); 设置 Firebase 权限?

转载 作者:行者123 更新时间:2023-11-28 13:14:59 31 4
gpt4 key购买 nike

如何设置数据库规则以便浏览器可以监听?

var connectedRef = db.ref('.info/connected');
connectedRef.on('value', function(snap) {...});

目前尚不清楚我将设置什么级别才能收听 .info/connected

这是我当前的数据库规则:

{
"rules": {
"service": {
"$service": {
"bot": {
"$bot_id": {
"notification": {
"$user_id": {
".write": "auth != null"
}
},
"player": {
".write": "auth != null",
".read": "auth != null"
}
}
}
}
}
}
}

最佳答案

.info/connected 路径是客户端上反射(reflect)套接字连接状态的虚拟节点。它始终可用并且不受安全规则的影响。

.info/serverTimeOffset 也是如此。

关于javascript - 我是否需要为 db.ref ('.info/connected' ); 设置 Firebase 权限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39290566/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com