I follow this tutorial https://developers.facebook.com/docs/howtos/androidsdk/3.0/native-login/ for login process. It's working tith facebook native app, but without native app, first it shows an error, then i click Okay, then again click login button, it's working. I don't understand why doesn't work in the first time?

i don't understand what is the problem? Is it bug?
Updated: Here is the code.
btnFacebook.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Session session = Session.getActiveSession();
if (!session.isOpened() && !session.isClosed()) {
session.openForRead(new Session.OpenRequest(
UserLoginActivity.this).setPermissions(
Arrays.asList("basic_info", "email")).setCallback(
statusCallback));
}
else {
Session.openActiveSession(UserLoginActivity.this, true,
statusCallback);
}
}
});
private class SessionStatusCallback implements Session.StatusCallback {
@Override
public void call(Session session, SessionState state,
Exception exception) {
if (session.isOpened()) {
final String token = session.getAccessToken();
Request.executeMeRequestAsync(session,
new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user,
Response response) {
if (user != null) {
new AsyncFaceLogin(UserLoginActivity.this)
.execute(user.getId(),user.getFirstName(),user.getLastName(),(String)user.getProperty("email"),token);
}
}
});
}
}
}
