在评论或发表文章时,请包含来自firebase google auth的用户photoUrl

时间:2017-07-05 03:13:12

标签: android firebase firebase-authentication

有人知道如何在发布文章时从firebase Google auth中包含用户photoUrl吗?注意:我使用滑动显示我的谷歌photourl

1 个答案:

答案 0 :(得分:0)

Google身份验证提供程序提供用户的displayName,email和photoUrl。在您通过Google进行身份验证后的任何时候,您都可以执行以下操作:

ImageView photoImageView;    

FirebaseUser firebaseUser = FirebaseAuth.getInstance().getCurrentUser();
if (firebaseUser != null && firebaseUser.getPhotoUrl() != null) {
    Glide.with(this).load(firebaseUser.getPhotoUrl()).into(photoImageView);
}