Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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" : enter image description here

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);
share|improve this question

1 Answer

Use this Code:

Bundle params = new Bundle();

params.putString("to", String.valueOf(friendId));
params.putString("caption", " ");
params.putString("description", getString(R.string.post_description));
params.putString("picture", "IMAGE URL");
params.putString("name", "YOUR NAME");
params.putString("link", "http://www.google.com");



Utility.mFacebook.dialog(YOURACTIVITY.this, "stream.publish", params,new PostDialogListener());

It will Surly post the appropriate data to the facebook wall.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.