Android Firebase Auth - Get User's Photo

后端 未结 4 1683
旧巷少年郎
旧巷少年郎 2020-12-05 19:47

How can I retrieve a photo of the user with decent resolution that can be used from a mobile app? I looked at the guides and the api docs and the recommended way seemed to b

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 20:15

    Inside onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth)

    Try If you login with Facebook:

     if (!user.getProviderData().isEmpty() && user.getProviderData().size() > 1)
                    String URL = "https://graph.facebook.com/" + user.getProviderData().get(1).getUid() + "/picture?type=large";
    

提交回复
热议问题