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?
