firebase 在哪里保存它的简单登录用户? [英] Where does firebase save it's simple login users?

查看:24
本文介绍了firebase 在哪里保存它的简单登录用户?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在使用 firebase 制作一个 ionic 应用.我正在将 firebase simple login 用于 social auth(facebook、twitter、电子邮件和密码).认证工作完美,它$broadcasts authed user.然而,它似乎并没有在实际的 firebase db 中创建用户.我想知道如何使用我的 app 获取已authed 的用户.

I am currently using firebase to make an ionic app. I am using firebase simple login for social auth (facebook, twitter, email & password). The auth works perfectly, it $broadcasts the authed user. However it doesn't seem to create a user in the actual firebase db. I was wondering how I can get the users that have been authed using my app.

推荐答案

对于它支持的大多数身份验证协议,Firebase 不会将用户数据存储在任何地方.即使对于它确实存储数据的协议(我只知道电子邮件+密码这样做),它也会将此信息存储在您的应用程序无法访问的位置(尽管您可以在Firebase 的信息中心).

For most of the authentication protocols it supports, Firebase doesn't store user data anywhere. Even for the protocols where it does store data (I only know of email+password doing this), it stores this information in a place that your application can't access (though you can find those users in the dashboard of your Firebase).

引用 Firebase 文档:

它不会在您的 Firebase 中存储个人资料或用户状态.要保留用户数据,您必须将其保存到 Firebase.

It does not store profile or user state in your Firebase. To persist user data you must save it to your Firebase.

大多数应用程序最终会做的是将用户列表保存在他们自己管理的 Firebase 中.因此,当用户首次向应用程序进行身份验证时,它会在 /users/ 下创建一个节点,其中包含该用户的信息.

What most applications end up doing, is keeping a list of users inside their Firebase that they manage themselves. So when a user first authenticates with the application, it creates a node under /users/<uid> that contains the information for that user.

请参阅描述存储的 Firebase 文档的这一部分用户数据.

这篇关于firebase 在哪里保存它的简单登录用户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆