Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to access the facebook user's basic information using facebook session login. however I am not able to access their basic information.

I am getting facebook error message An error occured. Please try again later.

Following is my code to access facebook using session login,

private void onClickLogin() {
        Session session = Session.getActiveSession();
        if (!session.isOpened() && !session.isClosed()) {
            session.openForRead(new Session.OpenRequest(this).setPermissions(Arrays.asList("basic_info")).setCallback(statusCallback));
        } else {
            Session.openActiveSession(this, true, statusCallback);
        }
    }

Please any one help me to fix this.

Thanks in advance.

share|improve this question
have you tried, getting started with Facebook SDk link. it worked perfectly for me – Ankit_Awasthi Jan 19 at 18:27
yes, I have tried. But still didn't work for me. – Nandha Jan 22 at 11:40
try to log out exception field in statusCallback class. – Ankit_Awasthi Jan 22 at 12:31

1 Answer

Try to set the permission on the login button:

LoginButton authButton = (LoginButton) view.findViewById(R.id.authButton);
authButton.setReadPermissions(Arrays.asList("basic_info"));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.