I am trying to call facebook.authorize whenever a request made by my app to facebook fails.

But it throws a Can't create handler inside thread that has not called Looper.prepare() inside listener error.

I am making the call from a try-catch on Facebook error handler.

Is there another way of handling this?

link|improve this question
You should probably post your code to make it easier for people to help you. – Dan J Nov 17 '11 at 3:57
ah ok, will upload once i get home – kaizenx Nov 17 '11 at 7:32
feedback

1 Answer

up vote 0 down vote accepted

This problem is solved over here

Facebook authorize not working inside Android Asynctask or Thread

            Looper.prepare();
            facebook.authorize(this, PERMISSIONS, new LoginDialogListener());
            Looper.loop();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.