有人知道如何在发布文章时从firebase Google auth中包含用户photoUrl吗?注意:我使用滑动显示我的谷歌photourl
答案 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);
}