1
votes

I am facing issue for downloading image of google plus

1) Sign up via Google 2) Got response of profile image url

now i want to download that image in android for upload to server please help for it

1
Show some of your code please how you are applying download process ?Jay Rathod RJ
(1) Where is code, (2) Where is error log?Lucifer
have you got the url of profile picAmjad Khan

1 Answers

0
votes

If you use firebase to log in, when you are signed, you can have the profile image via:

FirebaseAuth auth = FirebaseAuth.getInstance();

Uri imageUri = auth.getCurrentUser().getPhotoUrl();
Bitmap bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), imageUri);