5

I added a sharing feature on my app like this:

Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");

// Add data to the intent, the receiving app will decide what to do with it.
share.putExtra(Intent.EXTRA_TEXT, toShare);

startActivity(Intent.createChooser(share, getResources().getString(R.string.share)));

When I choose to share with Facebook I can see the correct Image preview: enter image description here

but then on facebook the image preview is missing: enter image description here

And this is happening only when I share from Android, if I share from iOS the image preview is displayed correctly. Do you have any idea what can be the issue? Here an example of the shared link: http://pixide.org/it/share/?t=F61CAD079F61F540757E569F68332275

Thanks

Stefano Giacone
  • 2,016
  • 3
  • 27
  • 50

0 Answers0