我尝试自动生成可以保存数据的用户帐户,然后将其提升为正确的用户名/密码帐户。有关最佳方法的任何想法吗?
我不清楚是否可以将auth提供程序从匿名切换到密码。
答案 0 :(得分:13)
您可以首先使用Firebase创建anonymous login,然后存储该身份验证" uid"某种会话或cookie的关键(取决于你正在使用的框架)。虽然客户端是匿名的,但您可以将保存的数据链接到此匿名" uid"。
要在用户登录后将数据传输给用户,您需要使用Firebase的onAuth()监听器。这将在用户的身份验证数据发生更改时通知您。获得新的经过身份验证的uid后,您可以将存储的数据链接到新的uid并删除匿名会话。
以下是来自Firebase文档的修改后的示例:
var firebaseRef = new Firebase('https://samplechat.firebaseio-demo.com');
firebaseRef.onAuth(function(authData) {
if (authData) {
// Client is logged in, so check if it's anonymous or a real user
if (authData.provider === 'anonymous') {
// user is anonymous
// save authData.uid to some local session info, to keep track of data
} else {
// user is logged in
// transfer any data that you had stored from the anonymous session to
// this new authUser.uid
} else {
// Client is unauthenticated
// This would be a good spot to create the anonymous login
firebaseRef.authAnonymously(function(error, authData) {
if (error) {
// handle login failure
} else {
// you are now anonymously logged in, but you really don't need to do anything
// here, because your onAuth() listener is already going to catch this auth change
}
}
});
当用户更改其身份验证信息时,Firebase不会告诉您之前的uid是什么,因此您确实需要将该匿名uid存储在某处。您也可以在不创建匿名登录的情况下完成所有操作,只需存储会话数据直到用户登录,但匿名登录提供更多一致性。