I am trying to share facebook function with link to google play. Its working well, except for 1 question. The main title on the message page says: "Not found"
Here is my code:
if (FacebookDialog.canPresentShareDialog(this,
FacebookDialog.ShareDialogFeature.SHARE_DIALOG)) {
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(this)
.setDescription(getString(R.string.facebook_description))
.setPicture(getString(R.string.facebook_picture))
.setLink(getString(R.string.url_google_play) + getPackageName())
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
}
And here is the result:
https://www.dropbox.com/s/ylx5zo265yjg66i/Screenshot_2014-05-14-16-35-04.png
At first it seemed to me that I needed to set setCaption, but that seems to break things - I don't get the link or icon at all!
Did I miss something? I went through the documents again and again.
thank
sipi source
share