数据不共享 - Facebook上的Intent选择器

时间:2016-07-25 07:04:54

标签: android facebook facebook-graph-api android-intent-chooser

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

0 个答案:

没有答案