Ok im going crazy here. I allow people to log into my app through the facebook single signon. I have code in my first activity that is opened to authorize the user. It works fine.
Now I am trying to share in facebook for users who did not use the single singon. It is the exact same code but for some reason the code below does not ever return to onComplete or error or anything. It executes the authorize and is never to be seen.
private void validateFacebook()
{
facebook.authorize(this, new String[] { "email",
"user_birthday", "publish_stream", "offline_access" },
new DialogListener() {
public void onComplete(Bundle values) {
try {
JSONObject jsonObject = new JSONObject(
facebook.request("me"));
endUser.setAuthTokenFacebook(facebook
.getAccessToken());
restHelper.updateUser(endUser, null);
displayShareDialogFacebook(facebook.getAccessToken());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void onFacebookError(FacebookError error) {
Log.v(this.toString(), error.toString());
}
public void onError(DialogError e) {
Log.v(this.toString(), e.toString());
}
public void onCancel() {
Log.v(this.toString(), "Cancel");
}
});
}