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.

now i want to share text with a link below is my code

String myText = "Hey!\nThis is a my Text!";

Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
String extraText = "www.mylink.com\n\n" + myText ;
share.putExtra(Intent.EXTRA_TEXT, extraText);
startActivity(Intent.createChooser(share, "Share with Friends"));

so it work work fine with gmail, twitter etc. but it is not working on facebook

on facebook it share only link but there are not shown my text

i want to this type sharing

www.mylink.com

here is my text

Any help would be appreciated, Thanks in Advance.

share|improve this question
17% accept rate.! world is gonna end soon, go improve your accept rate.:D – Sahil Mahajan Mj Dec 22 '12 at 10:14
possible duplicate of Android and Facebook share intent – IceMAN Dec 22 '12 at 11:19

2 Answers

up vote 1 down vote accepted

The problem you have here is probably that Facebook doesn't look at the extra information provided in the Intent. Because it works for Gmail and Twitter.

Have a look at Android and Facebook share intent by the way..

share|improve this answer

you cant share link with text on FB using Share Intent, You must try to do this the FB graph API for wall post .

share|improve this answer
thanks for reply – Jeetu Feb 8 at 6:17

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.