web-dev-qa-db-ja.com

Android Firebase Auth-ユーザーの写真を取得

モバイルアプリから使用できる適切な解像度でユーザーの写真を取得するにはどうすればよいですか?私はガイドとAPIドキュメントを見て、推奨される方法は FirebaseUser#getPhotoUrl() を使用するように思われました。ただし、これにより、50x50ピクセルの解像度の写真のURLが返されるため、低すぎて便利ではありません。クライアントがユーザーの高解像度の写真をリクエストする方法はありますか?私はFacebookログインとGoogleログインのSDKを個別にテストしました。どちらの場合も、写真の解像度はFirebase Authが返す解像度よりも高くなっています。 Firebase Authが元の解像度を変更するのはなぜですか?また、それを行わないように強制するにはどうすればよいですか?ありがとう。

11
mobilekid

両方のプロバイダー(GoogleおよびFacebook)のURLを直接編集して、より良い解像度のプロファイル写真を使用できます。

以下はjavascriptのサンプルコードですが、Javaに簡単に変換できるはずです。

getHigherResProviderPhotoUrl = ({ photoURL, providerId }: any): ?string => {
    //workaround to get higer res profile picture
    let result = photoURL;
    if (providerId.includes('google')) {
      result = photoURL.replace('s96-c', 's400-c');
    } else if (providerId.includes('facebook')) {
      result = `${photoURL}?type=large`;
    }
    return result;
  };

基本的に、プロバイダーに応じて、次のことを行うだけです:

  • googleの場合、プロフィール写真のURLのs96-cs400-cに置き換えます
  • facebookの場合、URLの末尾に?type=largeを追加するだけです

たとえばgoogle:

low-res pic なる high-res pic

そしてFacebookの場合:

low-res pic なる high-res pic

11
Gomino

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

            }
        }
    }
10
Jitty Aandyan

内部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";
8
Juan Labrador

やってみました:

Uri xx = FirebaseAuth.getInstance().getCurrentUser().getPhotoUrl();
5
ErstwhileIII