如何在应用程序中与Facebook上的内容共享URL?

时间:2015-05-27 18:05:48

标签: android facebook share

我正在尝试使用我的标题和描述从我的应用程序共享Play商店URL,但我没有获得共享数据上的应用程序的内容和标题。请任何人帮助我。

这是我的代码,

if (ShareDialog.canShow(ShareLinkContent.class)) {
    ShareLinkContent linkContent = new ShareLinkContent.Builder()
            .setContentTitle("My Application")
            .setContentDescription("Check out My Allpication.")
            .setContentUrl(Uri.parse("https://play.google.com/store/apps/details?id=com.facebook.katana"))
            .build();
    shareDialog.show(linkContent);
} else {
    Toast.makeText(ActivityOptions.this, "There is no Facebook application available.", Toast.LENGTH_LONG).show();
}

1 个答案:

答案 0 :(得分:0)

Facebook不会“允许”分享文字,只会链接。

查看有关this question的更多信息。