I have some code to connect facebook:
facebook.authorize(((Activity) ctx).getParent(), new String[] {},
requestCode, new DialogListener() {}
Usually it works fine. But sometimes I connect to some network don't allow connection to facebook. Then the authorize method will throw
com.facebook.android.DialogError: The connection to the server was unsuccessful
On my phone, it took about 20 seconds to throw that exception. But on some other device, it took very long time (maybe because the different setting on different device, I'm not sure). Is there a way to set timeout when the network don't allow connection to facebook.
Handlerclass and itspostDelayedmethod, perhaps), and when it expires, terminate the connection attempt. – Eric Jun 11 '12 at 6:26