0

我无法将用户的Facebook个人资料图片添加到我的imageView中。我正试图与毕加索图书馆合作。有想法解决这个问题吗?这是我的代码。提前致谢!无法通过Firebase获取FB个人资料图片

R.string.facebook_provider_id = “facebook.com”

错误:

FATAL EXCEPTION: main 
Process: com.example.yunus.ototakip, PID: 3045 java.lang.RuntimeException: Unable to start activity 

ComponentInfo{com.example.yunus.ototakip/com.example.yunus.ototakip.Hesabim}: java.lang.IllegalArgumentException: Target must not be null. 

Hesa​​bim.java

public class Hesabim extends AppCompatActivity { 

public FirebaseAuth firebaseAuth; 
public FirebaseUser user; 
public CircleImageView userImage; 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_hesabim); 
    userImage= (CircleImageView) findViewById(R.id.kullaniciHesapResmi); 
    firebaseAuth = FirebaseAuth.getInstance(); 
    user = FirebaseAuth.getInstance().getCurrentUser(); 
    if(firebaseAuth.getCurrentUser()==null) 
    { 
     finish(); 
     startActivity(new Intent(this,Giris.class)); 
    } 

    kullaniciMail.setText(firebaseAuth.getCurrentUser().getEmail()); 
    String facebookUserId = ""; 
    user = FirebaseAuth.getInstance().getCurrentUser(); 
    for(UserInfo profile : user.getProviderData()) { 
     // check if the provider id matches "facebook.com" 
     if(profile.getProviderId().equals(getString(R.string.facebook_provider_id))) { 
      facebookUserId = profile.getUid(); 
     } 
    } 
    String photoUrl = "https://graph.facebook.com/" + facebookUserId + "/picture?type=medium"; 
    Picasso.with(this).load(photoUrl).into(userImage); 

hesabim.xml

 <de.hdodenhof.circleimageview.CircleImageView 
      android:id="@+id/kullaniciHesapResmi" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:src="@drawable/kullanici_pp" 
      fancy:civ_border_color="@color/colorAccent" 
      fancy:civ_border_width="2dp" /> 

回答

1

我希望你先问自己从Facebook的个人资料图片的许可,bcz未经许可facebook不会让你得到任何东西。

loginButton.setReadPermissions("public_profile", "email", "user_friends", "user_education_history", "user_hometown", "user_likes", "user_work_history"); 

,或者您也可以使用Facebook回调以获取用户的个人资料图片,这样的..

private FacebookCallback<LoginResult> mCallBack = new FacebookCallback<LoginResult>() { 
     @Override 
     public void onSuccess(final LoginResult loginResult) { 

      GraphRequest request = GraphRequest.newMeRequest(
        loginResult.getAccessToken(), 
        new GraphRequest.GraphJSONObjectCallback() { 
         @Override 
         public void onCompleted(
           JSONObject object, 
           GraphResponse response) { 
          Log.e("response: ", response + ""); 
          try { 
           String id = object.getString("id").toString(); 
           String email = object.getString("email").toString(); 
           String name = object.getString("name").toString(); 
           String profilePicUrl = "https://graph.facebook.com/" + loginResult.getAccessToken().getUserId() + "/picture?type=large"; 
           Log.d("imageFB", profilePicUrl); 
           Log.d("FB_ID:", id); 


           checkFBLogin(id, email, name, profilePicUrl); 

          } catch (Exception e) { 
           e.printStackTrace(); 
          } 

          finish(); 
         } 

        }); 
      Bundle parameters = new Bundle(); 
      parameters.putString("fields", "id,name,email,gender,birthday,friends,likes,hometown,education,work"); 
      request.setParameters(parameters); 
      request.executeAsync(); 
     } 
+0

我的代码,包括loginButton.setReadPermissions( “电子邮件”, “public_profile”);线。 –

+0

我应该在LoginActivity中使用您的代码还是在LoginActivity后打开的活动? –

+0

在登录活动中使用此代码。并将图像传递给下一个活动。 –

相关问题