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 using latest android SDK. Dialog is opened, but after enter credentials dialog is closing and status don't change.

private StatusCallback statusCallback = new StatusCallback() {
    @Override
    public void call(Session session, SessionState state, Exception exception) {
        if (session.isOpened()) // call just one time and state is "opening"
            authWithToken("facebook", session.getAccessToken());
    }
};

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(new View(this));

    //setVisible(false);

    Settings.addLoggingBehavior(LoggingBehavior.CACHE);
    Settings.addLoggingBehavior(LoggingBehavior.INCLUDE_ACCESS_TOKENS);
    //Settings.addLoggingBehavior(LoggingBehavior.INCLUDE_RAW_RESPONSES);
    //Settings.addLoggingBehavior(LoggingBehavior.REQUESTS);

    Session session = Session.getActiveSession();

    if (session == null) {
        session = new Session.Builder(this).build();
        Session.setActiveSession(session);
    }

    if (!session.isOpened()) {
        Session.OpenRequest openRequest = new Session.OpenRequest(this);
        openRequest.setPermissions(permissions);
        openRequest.setLoginBehavior(SessionLoginBehavior.SSO_WITH_FALLBACK);
        openRequest.setCallback(statusCallback);
        session.openForPublish(openRequest); //here dialog is opened, user is able to enter credentials 
    }

    if (session != null && session.isOpened()) {
        if (!hasEmailPermission()) {
            NewPermissionsRequest request = new NewPermissionsRequest(this, permissions);
            request.setCallback(statusCallback);
            request.setLoginBehavior(SessionLoginBehavior.SSO_WITH_FALLBACK);

            session.requestNewReadPermissions(request);
        }
    }

    if (session != null && session.isOpened())
        authWithToken("facebook", session.getAccessToken());
}

private boolean hasEmailPermission() {
    Session session = Session.getActiveSession();
    return session != null && session.getPermissions().containsAll(permissions);
}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    //never call this method 
    super.onActivityResult(requestCode, resultCode, data);

    Session.getActiveSession().onActivityResult(this, requestCode, resultCode, data);
}

I am did everything by facebook oficial "getting started" documentation

Android Facebook SDK3.0, session state OPENING

doesn't work, because Facebook authentification dialog never calls onActivityResult()

Facebook application is not installed.

UPDATE:

I checked. session.openForPublish(openRequest); closes my activity and open Facebook Dialog. But why?

share|improve this question
what exactly happen when you login did it try prompt to ask authorization first before closing or after you login it closes the dialog ? – DevfaR Feb 13 at 9:24
Activity is closed just after facebook prompt to ask autorization. My activity don't get onActivityResult at all, because it is closed before. – neworld Feb 13 at 9:33
so what do you want to achieve after user prompt user to ask for authorization? ask permission ? – DevfaR Feb 13 at 9:37
I just need determine user complete autorization or not. I am stuck here, because I dont understand, why my application is closed. Other things I will try to make myself. – neworld Feb 13 at 9:56
of course it will automatically closed after the user authorize because you need to get back to your application. are you using openSession? – DevfaR Feb 13 at 10:09
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.