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.

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)
share|improve this question
EDIT: I found that the force close was due to using the toast message. But once I removed the toast message, when the button was pressed nothing would happen. – Android Student Oct 3 '12 at 0:08

closed as not a real question by casperOne Oct 3 '12 at 11:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.