如何从应用程序与 Facebook 上的内容共享 URL?
how can Share URL with content on facebook from application?
我正在尝试从我的应用程序中共享 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();
}
Facebook 没有 "allow" 文字分享,只有一个 link。
查看有关 this question 的更多信息。
我正在尝试从我的应用程序中共享 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();
}
Facebook 没有 "allow" 文字分享,只有一个 link。
查看有关 this question 的更多信息。