I am trying to post a message to the users wall using the official facebook SDK for Android.
parameters.putString("method", "feed");
parameters.putString("link", "www.example.com");
parameters.putString("name", "Example Web");
parameters.putString("description", "An example website for testing.
parameters.putString("message", etMessage.getText().toString());
facebook.dialog(this, "feed", parameters,
new DialogListener() {...
Everything gets successfully addressed in the Dialog, except for the message. In the dialog, the message field is empty.
Please help, Thanks!