2016-05-23 7 views
7

Как я могу получить фотографию пользователя с приличным разрешением, которое можно использовать из мобильного приложения? Я посмотрел на руководства и api docs, и рекомендованный способ, по-видимому, состоял в использовании FirebaseUser#getPhotoUrl(). Это, однако, возвращает URL-адрес фотографии с разрешением 50x50 px, что слишком мало, чтобы быть полезным. Есть ли способ, чтобы клиент запросил фотографию с более высоким разрешением пользователя? Я протестировал sdks входа в Facebook и входа в Google отдельно, и в обоих случаях разрешения фотографий выше, чем возвращает Firebase Auth. Почему Firebase Auth меняет исходные разрешения и как я могу заставить его не делать этого? Благодарю.Android Firebase Auth - Получить фото пользователя

ответ

1

Вы пробовали:

Uri xx = FirebaseAuth.getInstance().getCurrentUser().getPhotoUrl(); 
+0

Да, у меня есть. Это дает вам фотографию размером 50x50 пикселей. – mobilekid

6

Внутри onAuthStateChanged (@NonNull FirebaseAuth firebaseAuth)

Попробуйте Если вы войти в систему с Facebook:

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

Facebook и Google PhotoURL:

 User myUserDetails = new User(); 
     myUserDetails.name = firebaseAuth.getCurrentUser().getDisplayName(); 
     myUserDetails.email = firebaseAuth.getCurrentUser().getEmail(); 

     String photoUrl = firebaseAuth.getCurrentUser().getPhotoUrl().toString(); 
     for (UserInfo profile : firebaseAuth.getCurrentUser().getProviderData()) { 
      System.out.println(profile.getProviderId()); 
      // check if the provider id matches "facebook.com" 
      if (profile.getProviderId().equals("facebook.com")) { 

       String facebookUserId = profile.getUid(); 

       myUserDetails.sigin_provider = profile.getProviderId(); 
       // construct the URL to the profile picture, with a custom height 
       // alternatively, use '?type=small|medium|large' instead of ?height= 

       photoUrl = "https://graph.facebook.com/" + facebookUserId + "/picture?height=500"; 

      } else if (profile.getProviderId().equals("google.com")) { 
       myUserDetails.sigin_provider = profile.getProviderId(); 
       ((HomeActivity) getActivity()).loadGoogleUserDetails(); 
      } 
     } 
     myUserDetails.profile_picture = photoUrl; 




private static final int RC_SIGN_IN = 8888;  

public void loadGoogleUserDetails() { 
     try { 
      // Configure sign-in to request the user's ID, email address, and basic profile. ID and 
      // basic profile are included in DEFAULT_SIGN_IN. 
      GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN) 
        .requestEmail() 
        .build(); 

      // Build a GoogleApiClient with access to GoogleSignIn.API and the options above. 
      mGoogleApiClient = new GoogleApiClient.Builder(this) 
        .enableAutoManage(this, new GoogleApiClient.OnConnectionFailedListener() { 
         @Override 
         public void onConnectionFailed(@NonNull ConnectionResult connectionResult) { 
          System.out.println("onConnectionFailed"); 
         } 
        }) 
        .addApi(Auth.GOOGLE_SIGN_IN_API, gso) 
        .build(); 

      Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient); 
      startActivityForResult(signInIntent, RC_SIGN_IN); 
     } catch (Exception e) { 
      e.printStackTrace(); 
     } 
    } 




@Override public void onActivityResult(int requestCode, int resultCode, Intent data) { 
     super.onActivityResult(requestCode, resultCode, data); 

     // Result returned from launching the Intent from 
     // GoogleSignInApi.getSignInIntent(...); 
     if (requestCode == RC_SIGN_IN) { 
      GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data); 
      if (result.isSuccess()) { 
       GoogleSignInAccount acct = result.getSignInAccount(); 
       // Get account information 
       String PhotoUrl = acct.getPhotoUrl().toString(); 

      } 
     } 
    } 
+0

Я пробовал это для части facebook и преуспел. Я еще не попробовал google. благодаря – Dika