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?