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.

I am trying to use the Android share intent to post something on facebook. It looks like this:

shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Free education for all! http://linkd.in/xU8mCc");
startActivity(shareIntent);

So my post has both - some text and a link. But when the message is posted on facebook, it only has the link, no message. I tried various extras but nothing works.

Anyone faced this issue and solved it? I have facebook app version 1.8.1

Edit: I tried removing the link, and the facebook app does not take my message (shows a blank message to be posted), but not the other way round. So looks like the app is totally ignoring any plain text messages. I am spooked! Is this a major bug in the fb app that text messages can not be posted at all (with share intent)?

share|improve this question
hello GreenBee i have same problem but this link is not open now here is my Question please help me how to solve this problem – Jeetu Dec 24 '12 at 14:29

1 Answer

up vote 4 down vote accepted

Apparently this is a known bug and hopefully being worked out:

http://forum.developers.facebook.net/viewtopic.php?id=93900

share|improve this answer
2  
Unbelievable! This is open for almost a year without a fix from FB? Wow. – GreenBee Jan 14 '12 at 17:06
3  
FB changed th bug priority to 'Wishlist'. They just do not want to fix it apparently, making you use their sdk and screwing up the share intent for all others. – UncleIstvan Mar 12 '12 at 14:00
hello nick i have same problem but link is not open now r u help me here is my link – Jeetu Dec 22 '12 at 13:20

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.