I am trying to post a message to my wall on facebook using Android SDK. I once tried this before and it succeeded. It posted a rectangular frame with a icon on the left hand corner a caption and a message. This is my code.
final Bundle parameters = new Bundle();
parameters.putString("to", friendId);
parameters.putString("caption", "Little Cast Invitation");
parameters.putString("description", "Please View my video");
parameters.putString("message","Hello");
parameters.putString("icon", "http://www.veryicon.com/icon/png/Object/Points%20Of%20Interest/Theater%20Yellow%202.png");
parameters.putString("name","Invitation to View Video");
Utility.mAsyncRunner.request("me/feed", parameters,"POST", new myPostListener(), 1);
This only post a message "Hello" onto my wall. everything else is ignored ? Any help in this?