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 need to make my app post an image with some text to facebook.

Here's my code

               Intent shareIntent = new Intent(Intent.ACTION_SEND);

                shareIntent.setType("image/jpg");
                shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
                shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "text1");
                shareIntent.putExtra(Intent.EXTRA_TEXT, "text2");

                startActivity(Intent.createChooser(shareIntent, "Share via..."));

It does post the image fine, but I can't find a way how to attach text to it.

enter image description here

While, for example, in instagram it does post both text & photo fine. Also notice the posting window is different.

enter image description here

Any ideas? Thanks!

share|improve this question

1 Answer

What by many android developer is classified as a bug in the facebook app is actually from their point of view a valid design decision.

Discussion on facebook Android Intent Sharing is Broken

... Our FB app handles the intent because it is an effective way for users to share content such as links (e.g. your app URL) on their Facebook. However, like I mentioned earlier, it is against our policy to pre-fill the message for our users because it erodes the authenticity of the user voice so our app does not accept the EXTRA_* fields . ...

share|improve this answer

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.