Официальный способ сделать это:
ShareLinkContent content = new ShareLinkContent.Builder()
.setContentUrl(Uri.parse("https://developers.facebook.com"))
.build();
Для получения дополнительной информации, пожалуйста, посетите - https://developers.facebook.com/docs/sharing/android/
или , вы можете попробовать вот так
Intent intent = context.getPackageManager().getLaunchIntentForPackage("com.facebook.katana");
if (intent != null) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setPackage(application);
shareIntent.putExtra(android.content.Intent.EXTRA_TITLE, title);
shareIntent.putExtra(Intent.EXTRA_TEXT, description);
startActivity(shareIntent);
} else {
// The application does not exist
// Open GooglePlay or use the default system picker
}