Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "SHARE BODY https://www.messenger.com");
startActivity(Intent.createChooser(sharingIntent, "HUO"));
This text will be shared correctly for other apps, but messenger will only share the URL. Why? How can I fix this?