0
我想從我的應用程序中分享我的標題和描述,但我沒有得到共享數據的應用程序的內容和標題。請任何人幫助我。如何從應用程序共享URL與Facebook上的內容?
這裏是我的代碼,
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 sdk不是意圖。 – Hiral
嘗試將您的鏈接添加到.setContentDescription() –
這不允許共享任何內容。 – Hiral