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 would like to post a message on the wall without a dialog to pop up I have tried

parameters.putString("description", "test test test")
response = mFacebook.request("me/feed", parameters, "feed");

Or

response = mFacebook.request("me/feed", parameters, "stream.publish");

And I get an error

Got response: `{"error":{"message":"Unsupported method, feed","type":"Exception"}}`

The Code Posted Below is how to post a message on the wall without dailog in order to slove the issue, you need to add premission when you create facebook object see below

*final String FACEBOOK_PERMISSION = "publish_stream"; mPermissions = new String[]{FACEBOOK_PERMISSION};*

share|improve this question
try /me/feed in your request – Rufinus Apr 28 '12 at 9:26

1 Answer

Use this code

 public void postOnWall(String msg) {
    Log.d("Tests", "Testing graph API wall post");
     try {
            String response = facebook.request("me");
            Bundle parameters = new Bundle();
            parameters.putString("message", msg);
            parameters.putString("description", "test test test");
            response = facebook.request("me/feed", parameters, 
                    "POST");
            Log.d("Tests", "got response: " + response);
            if (response == null || response.equals("") || 
                    response.equals("false")) {
               Log.v("Error", "Blank response");
            }

     } catch(Exception e) {
         e.printStackTrace();
     } 
}
share|improve this answer

Your Answer

 
discard

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

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