I tried this example : Android how to post picture to friend's wall with facebook android sdk
but not work. here is my code :
String response = Utility.mFacebook.request((userID == null) ? "me" : userID);
final Bundle params = new Bundle();
params.putString("message", "test");
params.putString("caption", "test");
params.putString("picture", "http://www.facebook.com/images/devsite/iphone_connect_btn.jpg");
response = Utility.mFacebook.request(((userID == null) ? "me" : userID) + "/feed", params, "POST");
Any sample code that able post video/photo on friend wall?