1

我正在尝试在 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 上共享数据?

4

0 回答 0