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};*