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'm trying to call FB autorize dialog with this code:

//return true if is autologged
//return false if facebook login dialog is called
public boolean LoginAsync(Activity act)
{
    m_strLastError="";
    boolean bTryLogin= true;
    if ((m_fbkey != null) && (m_fbkey.length() > 0))
    {
        facebook.setAccessToken(m_fbkey);
        bTryLogin = !facebook.isSessionValid();
    }
    if (bTryLogin)
    {
        facebook.authorize(act, new String[] { "email", "offline_access", "publish_stream", "read_stream"}, new LoginDialogListener());
        return false;
    }

    //"succesfull 'autologin'
    return true;
}

It worked fine in test app when click button, but stopped working when moved it to OnCreate. Dialog doesn't appear anymore. Only empty screen. Is it possible to fajl because of use in OnCreate?

share|improve this question
1  
Ansvwer of this question is related to this question: facebook.stackoverflow.com/questions/9130133/… – Kostadin Feb 3 '12 at 14:27

1 Answer

up vote 0 down vote accepted

If you call login and have a valid token then you will skip the login form and go straight to the onComplete callback.

http://facebook.stackoverflow.com/questions/9130133/authorize-method-called-twice-for-facebook-on-android Thanks to mcnicholls.

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.