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
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
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);