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 writting a app first attampting to get authorization from facebook. I tried the sample code given on the developer's page of Facebook but it's not working well. here's my code below.

public class MyGreatActivity2 extends Activity {

Facebook facebook = new Facebook("XXXXXXXXXXXXXXXXXX");
private static final String[] PERMS = new String[]{"read_stream","publish_stream","user_checkins"};

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Log.d("signal","in MyGreatActivity2");
    Log.d("is session valid",""+facebook.isSessionValid());



    facebook.authorize(this,PERMS, new DialogListener() {
        @Override
        public void onComplete(Bundle values) {}

        @Override
        public void onFacebookError(FacebookError error) {}

        @Override
        public void onError(DialogError e) {}

        @Override
        public void onCancel() {}
    });

    Intent intent = new Intent();
    intent.setClass(MyGreatActivity2.this,SelectActivity.class);
    MyGreatActivity2.this.startActivity(intent);

}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    facebook.authorizeCallback(requestCode, resultCode, data);
}
}

In the log I can see even the session is not vaild, I cannot go to the sign-on page of facebook but derictly to the next activity. Can anyone gives me some advise or examples? many thanks~

share|improve this question
Your session won't be valid until you login, so better move the isSessionValid to after the facebook.authorize(....). However the call to authorize should display a login dialog. Are you sure you have Internet connection and/or the Facebook app installed? Please add logging to the onFacebookError and onError methods, run again and post your log here? – THelper Aug 1 '11 at 7:32
Ya THelper is right you may use: if (!facebook.isSessionValid()) { facebook.authorize(this.activity, this.PERMS,new LoginDialogListener()); – hanry Aug 1 '11 at 8:48

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.