In my Android application I want to post something to facebook. I've played around A LOT with the facebook SDK and I can post to the wall, populate the dialog with a predefined string.
But right now I can't make it post directly to the "feed" or "stream". Right now the user can change the text that will be published to the wall. When the application has asked for the permission to post to the stream I want it to post it directly without that the user can change what it will say.
How do I do this?
Right now I have a class that implements DialogListener and the important code inside it looks like this:
Bundle parameters = new Bundle();
parameters.putString("message", "this is a test");
facebook.dialog(HighScoreActivity.this, "feed", parameters, this);