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 have used share inbuilt dialog of android. Which fetch all application which is getting ACTION_SEND intent. My code is

        Intent sharingIntent = new Intent(Intent.ACTION_SEND);
        sharingIntent.setType("text/plain");            
        sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT,
                sharetext);
        startActivity(Intent.createChooser(sharingIntent, "Share"));

I am getting all apps like bluetooth, gmail, facebook, messaging, twitter, whatsapp in the list

All apps getting my message but not facebook. What should i do to send message in facebook app. How it will detect my message. Any help will be appreciated. Thanks.

share|improve this question
is facebook showing in the chooser? or is the problem related to facebook not taking in account your EXTRA_TEXT? – Romain Piel Nov 7 '11 at 10:51
Oh, and accept answers to questions you previously ask if you want people to pay attention to your question. Your accept rate is pretty low. – Romain Piel Nov 7 '11 at 10:52
yes, facebook app shows in the chooser. but not getting message sent form my app. And i have accepted answers whenever i got the perfect answers. But unfortunately i dint receive and i dont accept fake answers. – djk Nov 7 '11 at 10:56

1 Answer

up vote 0 down vote accepted

It is a known bug and it's recorded on Facebook Platform Developers forum: http://forum.developers.facebook.net/viewtopic.php?id=93900

Apparently sharing text on facebook is possible on a few phones but it's still buggy on others: Share Text on Facebook from Android App via ACTION_SEND

share|improve this answer
Thanks for the help. May be i can see this to my client. so there is not my fault. – djk Nov 7 '11 at 11:11
Alternatively you can use facebook sdk for android github.com/facebook/facebook-android-sdk. – Romain Piel Nov 7 '11 at 11:15

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.