I have a small Android app with Facebook login and I also have the Facebook app installed on my phone. The code for Facebook login is as follows:
if(access_token != null && access_token != "")
facebook.setAccessToken(access_token);
if(expires != 0)
facebook.setAccessExpires(expires);
if(!facebook.isSessionValid())
{
facebook.authorize(this, new String[] { "email", "publish_checkins", "publish_stream" }, new DialogListener()
{
public void onComplete(Bundle values)
{
/*
if (GlobalData.user != null)
{
GlobalData.user.fbToken = facebook.getAccessToken();
GlobalData.user.fbTokenExpires = facebook.getAccessExpires();
dataSource.addUser(GlobalData.user);
}
else */
gatherFacebookData();
}
public void onFacebookError(FacebookError error)
{
Toast.makeText(context, "Error: " + error, Toast.LENGTH_SHORT).show();
return;
}
public void onError(DialogError e)
{
Toast.makeText(context, "Error: " + e, Toast.LENGTH_SHORT).show();
return;
}
public void onCancel()
{
Toast.makeText(context, "Canceled", Toast.LENGTH_SHORT).show();
return;
}
});
}
else
this.gatherFacebookData();
Before the Facebook app was installed I could use Facebook SSO inside my app without any problem. However, now I click on the "Login with Facebook" button, a popup window flashes with a loading screen and disappears immediately. None of the DialogListener functions is called and so I have no idea what happens. Logcat doesn't show any error at all.
What am I doing wrong?
Thanks!