1

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

Arun J
  • 687
  • 4
  • 14
  • 27
kirti
  • 183
  • 16

1 Answers1

0

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);
Jerome
  • 1,153
  • 1
  • 17
  • 28
  • I am going to save image of google Plus (URL IS https://lh5.googleusercontent.com/-5GuNWLhTRi0/AAAAAAAAAAI/AAAAAAAAAAw/Wzy0ZQRsJ-0/photo.jpg) – kirti Apr 03 '18 at 12:57
  • 1
    Then your question is a duplicate of https://stackoverflow.com/questions/18210700/best-method-to-download-image-from-url-in-android https://stackoverflow.com/questions/15549421/how-to-download-and-save-an-image-in-android ... – Jerome Apr 03 '18 at 13:09
  • not work for google plus image download it return blank response – kirti Apr 06 '18 at 07:13
  • I can see your image without being logged. To download it, it's just a classic http get. I think nobody can help you more if you don't post your code. – Jerome Apr 06 '18 at 07:32