In my app, i first implemented a facebook share button using Facebook URL to share the link i want. It appears on my wall and my friends can share it with other friends. All correct.
Now i have implemented ACTION_SEND intent with:
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_TEXT, messageText + " " + mUrl + " vía @MyApp");
startActivity(Intent.createChooser(i, getString(R.string.select_app)));
With this code, link is posted on my facebook wall as status update, so it can be shared with anyone, only "like" and "comment".
Any solution for this? Maybe i have to use other mimetype? I cant found any solution on web...
Thanks in advance!