In my application user can share information with different apps using:
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Link from my APP");
shareIntent.putExtra(Intent.EXTRA_TEXT, "http://aaa.com/");
startActivity(Intent.createChooser(shareIntent,"Share via:"));
It works fine./gmail,sms,google+…./
The only problematic app is Facebook. It starts dialog, but there is no info in fields.
Tried different TAGs, bout nothing 🙁
The only result is: If I put URL as EXTRA_TEXT – it not shown as text, but Facebook dialog read tags from URL and place them on dialog frame.
Any ideas to fill data in dialog.
Already have code to share wia sdk with or without dialog but this is not good for some reasons.
All problems disappear after putting correct Android Key Hash.
Now share works correct.