Skip to content Skip to sidebar Skip to footer

Share Using Intent To Facebook In Android

I use the following code to share content Intent intent = new Intent(Intent.ACTION_SEND); intent.setType('text/plain'); intent.putExtra(Intent.EXTRA_TEXT, 'The status update text')

Solution 1:

According to the latest updating to the bug tracker this is 'By Design' and the bug has been closed. https://developers.facebook.com/bugs/332619626816423/

So looks like this isn't going to be possible via intents..

Solution 2:

You could only send pure URL to facebook. It should be a bug on facebook App.

For more detailed information, refer to the following post

Share Text on Facebook from Android App via ACTION_SEND


Someone has posted this issue to official facebook bug tracker, but it's still not solved yet.

Bug 16728 - Android ACTION_SEND is not handled correctly

Post a Comment for "Share Using Intent To Facebook In Android"