其他分享
首页 > 其他分享> > android – 用户识别Firebase存储上传

android – 用户识别Firebase存储上传

作者:互联网

我已经实施了Firebase存储,用户可以将一些图像上传到Firebase存储.我不想在我的Android应用程序中实现用户身份验证功能.

但我想将特定用户上传的图像组合在一起.我的意思是没有用户名,我想确定这些图像是由特定用户或设备上传的.

那么如何将文件与手机中的某种标识符组合在一起,以便我以后可以对其进行分类.每个Firebase用户是否都有某种唯一标识符或某些标识符,我可以将其作为我上传的图像的元数据放入?

解决方法:

您可以根据Firebase实施Firebase身份验证匿名身份验证

Use Firebase features that require authentication without requiring users to sign in first by creating temporary anonymous accounts. If the user later chooses to sign up, you can upgrade the anonymous account to a regular account, so the user can continue where they left off.

这应该为每个匿名帐户提供唯一的上传用户UID,请参见下图“User Auth”的最右侧列.

编辑:

看起来我错过了你问题的后半部分.

您可以在“数据库”中创建image_upload JSON结构,然后将用户UID链接到存储位置上载URL.请参阅下面我标题为“数据库用户”的示例.

用户身份验证
enter image description here

数据库用户

enter image description here

标签:android,firebase,firebase-storage
来源: https://codeday.me/bug/20190623/1265910.html