我正在使用firebase auth和firebase真实的数据库来检索数据。
我添加了安全规则,以便仅为授权用户检索数据
根据firebase文档说明,对于使用axios的Rest API请求,其工作方式如下:
axios.get(url?auth="accessToken")
我想知道如何使用firebase firebase Read and Write Data on the Web提供的get和set方法添加此accessToken
无效的示例:
set(ref(this.db, `requests?auth=${accessToken}`), data)
错误:路径必须为非空字符串,并且不能包含.""、“#"、“$"、“["或“]”
1条答案
按热度按时间x4shl7ld1#
只有在使用Firebase REST API时才需要
auth
查询参数。使用Firebase SDK时,只要用户使用Firebase身份验证登录,SDK就会为您处理用户身份验证。