0
I’m using the code below to share text with facebook. The problems is that other networks work, but facebook is blank. Someone’s been through it?
Intent compartilha = new Intent(Intent.ACTION_SEND);
compartilha.setType("text/plain");
compartilha.putExtra(Intent.EXTRA_SUBJECT, "Compartilhando frase");
compartilha.putExtra(Intent.EXTRA_TEXT, "Texto exemplo!");
startActivity(Intent.createChooser(compartilha, "Compartilhando"));
It seems to me that you found a Facebook bug that was not and will not be fixed... This problem is purposeful to force you to use the Facebook SDK for Android. Only this way is it possible to share correctly.
– Wakim