Android Facebook sample app doesn't login when FB app installed

前端 未结 3 853
青春惊慌失措
青春惊慌失措 2021-01-12 08:43

At first I thought this was my app but I get the exact same problem when using any of the FB sample apps.

Take the HelloFacebookSample for example, which gives you a

3条回答
  •  星月不相逢
    2021-01-12 09:02

    I found the next line that helped me in the above scenario:

    mLoginFacebook.setReadPermissions(Arrays.asList("email"));
    

    it comes right after:

    mLoginFacebook = (LoginButton) rootView.findViewById(R.id.authButton);
    mLoginFacebook.setFragment(this);
    

    solved all my problems.. Cheers

提交回复
热议问题