The below code only seems to POST the \'message\' and nothing else. Is there something I am missing? (using the Facebook Android SDK)
parameters.putString(\"
Check my edited answer, it will post on the user's wall:
It will show the exception case, but don't bother about it, your post will be succeed.
public void postOnWall() {
try{
Bundle parameters = new Bundle();
parameters.putString("message", "Text is lame. Listen up:");
parameters.putString("name", "Name");
parameters.putString("link", "http://www.google.com");
parameters.putString("caption", "Caption");
parameters.putString("description", "Description");
String response = facebook.request("me/feed",parameters,"POST");
Log.v("response", response);
}
catch(Exception e){}
}