Facebook、WhatsApp、Google+、Twitter などのソーシャル サイトでデータを共有しようとしていますが、すべてのサイトがデータを共有しているだけで、Facebook はデータを共有していません。Facebookがウォールでデータを共有しない理由
以下のコードを使用しています。
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"));
Facebookでデータを共有するにはどうすればよいですか?