我正试图在社交网站上分享数据,如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上分享数据?