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.