I am trying to share data in social sited like Facebook, WhatsApp, Google+, Twitter every site is sharing data only Facebook isn't. Why facebook does not share data on their wall
I am using this code below:
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(Intent.EXTRA_TEXT,"hello guys this testing");
sharingIntent.putExtra(Intent.EXTRA_SUBJECT,"hey");
context.startActivity(Intent.createChooser(sharingIntent, "Share via"));
How do I share data on Facebook?