Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to integrate the Facebook with unity android, I get login successfully but when i call the facebook.dialog() method, this causes an error

public void postMessage(){Log.d("d","Post is Called");
    //post on friend's wall.
    try{

        Bundle params = new Bundle();
        params.putString("to", "");
        facebook.dialog(ctx, "feed", params,new SampleDialogListener() );


    } catch (Exception e){

        e.printStackTrace();

    }

}

when i call this code from Unity the following error occures

java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

when i use this same code snippet in an android application project it works very fine

please suggest me some solutions for this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.