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 have an android app in which i am using Facebook Android SDK to post content from my application to Facebook Wall. My code was working perfectly till i updated the Facebook app on my phone. Since that time, whenever i try to post content on Facebook, i get the login screen with the "Loading" option and after a few seconds, nothing happens. Here is the code which i am using

On Facebook Button CLick

if(isOnline())
        {
        mFacebook = new Facebook("APP ID");


        mFacebook.authorize(this,new String[] {"publish_stream", "read_stream", "offline_access"}, new AuthorizeListener());

        }

The Code for Authorize listener is

class AuthorizeListener implements DialogListener {


 public void onComplete(Bundle values) {

       //  Handle a successful login
    postOnWall("My wall text");


      }

    @Override
    public void onCancel() {



    }

    @Override
    public void onError(DialogError e) {




    }

    @Override
    public void onFacebookError(FacebookError e) {



    }
    }

After debugging i found that the OnComplete method is not being called after calling the authorize function and there is also no exception. This was working perfectly till i update the Facebook app on my Android phone.

Any help will be appreciated

share|improve this question

1 Answer

up vote 1 down vote accepted

Make sure you are calling Facebook.authorizeCallback in your Activity's onActivityResult:

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
  super.onActivityResult(requestCode, resultCode, data);
  facebook.authorizeCallback(requestCode, resultCode, data);
  // ... anything else your app does onActivityResult ...
}

For the details, carefully read this page.

share|improve this answer
Thanks, missed it in my code – Mako Jan 23 '11 at 19:30

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.