Android Facebook SDK 3.2 Getting Profile Email information Showing Null

后端 未结 1 1802
日久生厌
日久生厌 2021-01-21 17:23

I am using Facebook SDK 3.2 for login in my android app.

Login, logout functions working fine.

My Problem:

after login want to retrieve the Facebook User

相关标签:
1条回答
  • 2021-01-21 17:58

    I found the Solution for my Question

    I have Missed the Permission for getting the facebook Profile email in My code

    added the permission below my login button inside oncreate method

    loginButton = (LoginButton) findViewById(R.id.login_button);
    loginButton.setReadPermissions(Arrays.asList("email","user_photos")); 
    

    Now its working fine

    0 讨论(0)
提交回复
热议问题