When you post on facebook's wall via the android SDK, there is a little link at the bottom of each post. For example here you can see "via deezer" :
When I post on facebook's wall, the post has my application's icon, and a message "via MY_APPLICATION" but this message is not a link. When I post the following data, there is the link :
Bundle params = new Bundle();
params.putString("message", message);
But when I post more data, there is no link !
Bundle params = new Bundle();
params.putString("message", message);
params.putString("name", name);
params.putString("caption", caption);
params.putString("description", description);
params.putString("picture", image);