I\'m developing an Android app and am interested to know how you can update the app user\'s status from within the app using Android\'s share intents.
Having looked
Facebook does not allow to share plain text data with Intent.EXTRA_TEXT
but You can share text+link with facebook messanger using this, this works fine for me
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, text+url link);
sendIntent.setType("text/plain");
sendIntent.setPackage("com.facebook.orca");
startActivity(sendIntent);