Apparently Facebook no longer supports predefined messages with the dialog method. I found that out because it wasn't noticing the parameter bundle. So, I switched to using the request method, though, now I ran into a different problem. Not only does it not post to facebook but it also force closes.
Please if you could provide any help or lead me to help (other than the official Facebook SDK Docs - which don't seem to help me) I would really appreciate it! Thanks!
Here's the code:
Bundle params = new Bundle();
params.putString("name", "AppTesting");
params.putString("caption", "Just Testing");
params.putString("description", "Trying to work with the Facebook SDK");
mAsyncRunner.request("me/feed", params, "POST", new RequestListener() {
public void onMalformedURLException(MalformedURLException e, Object state) {
// TODO Auto-generated method stub
}
public void onIOException(IOException e, Object state) {
// TODO Auto-generated method stub
}
public void onFileNotFoundException(FileNotFoundException e, Object state) {
// TODO Auto-generated method stub
}
public void onFacebookError(FacebookError e, Object state) {
// TODO Auto-generated method stub
}
public void onComplete(String response, Object state) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Posted", Toast.LENGTH_SHORT);
}
}, null);
Logcat:
10-02 19:47:17.998: E/AndroidRuntime(5622): FATAL EXCEPTION: Thread-10
10-02 19:47:17.998: E/AndroidRuntime(5622): java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
10-02 19:47:17.998: E/AndroidRuntime(5622): at android.os.Handler.<init>(Handler.java:121)
10-02 19:47:17.998: E/AndroidRuntime(5622): at android.widget.Toast.<init>(Toast.java:68)
10-02 19:47:17.998: E/AndroidRuntime(5622): at android.widget.Toast.makeText(Toast.java:231)
10-02 19:47:17.998: E/AndroidRuntime(5622): at com.app.apptesting.AppTestingActivity$1.onComplete(AppTestingActivity.java:118)
10-02 19:47:17.998: E/AndroidRuntime(5622): at com.facebook.android.AsyncFacebookRunner$2.run(AsyncFacebookRunner.java:254)