2015-05-27 97 views
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(); 
} 

回答

0

Facebook並沒有 「允許」 上分享文字,只有一個鏈接。

有關this question的更多信息:

+0

但我使用Facebook sdk不是意圖。 – Hiral

+0

嘗試將您的鏈接添加到.setContentDescription() –

+0

這不允許共享任何內容。 – Hiral

相關問題