我正在使用Firebase制作一个示例笔记应用程序,用户可以登录并创建简单的文本笔记。 我的Firebase数据结构如下:
"Project-dir":{
"Notes":{
"UserID":{
"NoteKey":{
"title":"This is note title",
"content":"This is the note content",
"unixTime":123456789
},
"NoteKey":{
"title":"This is note title",
"content":"This is the note content",
"unixTime":123456789
},
}
}
}
用户登录时效果很好。 但是,我想添加“继续不登录”功能。我使用push()生成唯一的用户ID,而不是使用auth UID并存储在sharedprefs中。 但是,当他决定稍后登录时,如何将所有这些笔记迁移到用户的UserID(UID)?
答案 0 :(得分:7)
对于此特定用例,您将要使用the Anonymous Authentication provider of Firebase Authentication。
它与您现在基本相同(它为当前用户/设备生成随机ID)。不同之处在于您可以通过链接他们的Facebook / Google / Github /电子邮件帐户来upgrade the anonymous authentication user to an identified user。