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.

When I tried to publish a link on my android facebook app, the thumbnail is wrong. It is random image from the site. I have:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "my google play link");
startActivity(Intent.createChooser(intent, "Share with"));

How can I fix that?

share|improve this question

1 Answer

You can't fix that, Google's play store does not have og metadata tags on their webpages to specify which image to use when shared on Facebook. As a consequence, Facebook will then just pick one to show in the composer and there isn't much you can do to change that.

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.