Android : How to get larger profile pic from Facebook using FirebaseAuth?

后端 未结 8 701
孤街浪徒
孤街浪徒 2021-01-30 14:25

I am using FirebaseAuth to login user through FB. Here is the code:

private FirebaseAuth mAuth;
private FirebaseAuth.AuthStateListener mAuthListener;
pr         


        
8条回答
  •  忘了有多久
    2021-01-30 15:14

    Two lines of code. FirebaseUser user = firebaseAuth.getCurrentUser();

    String photoUrl = user.getPhotoUrl().toString();
            photoUrl = photoUrl + "?height=500";
    

    simply append "?height=500" at the end

提交回复
热议问题