如何將用戶默認個人資料圖片(誰通過谷歌身份驗證)放入Firebase存儲中?如何在firebase android中存儲經過身份驗證的用戶個人資料圖片?
private StorageReference stRef;
private DatabaseReference userDb;
private FirebaseAuth mAuth;
Users users1 = new Users(mAuth.getCurrentUser().getDisplayName(),mAuth.getCurrentUser().getEmail()
,mAuth.getCurrentUser().getUid(),
new SimpleDateFormat("yyyy-MM-dd").format(new Date()),studyDetails,mAuth.getCurrentUser().getPhotoUrl());
userDb.child(mAuth.getCurrentUser().getUid()).setValue(users1);
這未能在數據庫中存儲
你的問題是不明確的,你想要什麼到底是什麼?如果您有任何問題可以幫助您,請放置您的代碼。 – Pipiks
我想顯示所有正在使用我的應用程序的用戶圖像。如何操作?.Say用戶使用Google帳戶進行身份驗證。 –
來自auth提供商的默認圖像?像谷歌,Facebook? – Pipiks