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 working on Text Sharing on From my Android Application . I have used the following code.

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");                         
String text="http://google.com";
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT,text);
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Message");
startActivity(Intent.createChooser(sharingIntent, "Share using"));

If I will this code means it shares link correctly and shows like following image ! Attached Image

When I am using normal text like "sample content" means it is not accepting and showing the text .... I need to share the text instead of that link .. please help me ...

Its working correctly for Gmail and Twitter also.

Waiting for better response..... Thanks in Advance

share|improve this question

1 Answer

up vote 2 down vote accepted

This is a limitation with the (stupid) Facebook app. They know about it, but apparently don't want to fix it.

Your only option is to implement Facebook sharing using their API.

share|improve this answer
Thanks for your swift response @Ollie C.. – RAJESH Mar 16 '12 at 11:39
@Ollie.. By using Facebook API is it possible to get the user verification every time before posting the content... right now i have a sample like "first time we need the registration .. if we done once .. by clicking share button it will post the content automatically in the Facebook wall ... neither i need User confirmation .... thanks in advance ..... – RAJESH Mar 16 '12 at 12:10
I suggest asking a new question, and tagging it appropriately. Do remem ber to vote up answers and accept responses, as more people will reply to your questions in future. – Ollie C Mar 16 '12 at 12:17
k . i wil do it .... – RAJESH Mar 16 '12 at 12:24

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.