Developing an application using facebook. im trying to login facebook using single sign-on. Once i clicked the Facebook icon from my activity, its going to Facebook oauth page successfully. But its keep displaying the "Loading..." page. While debugging i came to know that onComplete method is not getting called. I donot know whats the root cause of the issue. Please help me. Here is my code,
facebook.authorize(this, new String[] { "email" }, new DialogListener()
{
public void onComplete(Bundle values)
{
facebookAccessToken = facebook.getAccessToken();
processUserInfo(facebookAccessToken);
}
public void onFacebookError(FacebookError e)
{
Log.e("FaceBook Error: ", e.toString());
}
public void onError(DialogError e)
{
Log.e("FaceBook Error: ", e.toString());
}
public void onCancel()
{
}
});