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 trying to integrate Facebook sdk into my app.

When I press facebook login button, it shows generic erro "An error occurred. Please try again later" Anyone knows what might be the cause of it.

private final class ButtonOnClickListener implements OnClickListener {

public void onClick(View arg0) {
    if (mFb.isSessionValid()) {
        SessionEvents.onLogoutBegin();
        AsyncFacebookRunner asyncRunner = new AsyncFacebookRunner(mFb);
        asyncRunner.logout(getContext(), new LogoutRequestListener());
    } else {
        mFb.authorize(mActivity, mPermissions, new LoginDialogListener());
    }
}

}

Can anyone help me with this issue?

Thanks a lot.

share|improve this question

2 Answers

Make sure you use your app id while running the application.

share|improve this answer

Try EasyFacebookAndroidSDK, it's easy to implement. here is a good sample http://kodefun.junian.net/2011/10/easy-facebook-android-sdk-simple.html

share|improve this answer
1  
Care to elaborate on this? Your link may be useful, but I can't see how it answers the question that was asked. – Shog9 Sep 18 '12 at 17:12

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.