1
votes

I have implemented FBSDKShareLinkContent to share contentURL, title, description and imageURL. I have implemented deep linking in the application which redirect it to apple store on selecting image from Facebook.

I have impmented following piece of code:

FBSDKShareLinkContent *shareContent = [[FBSDKShareLinkContent alloc] init];
[shareContent setContentURL:url;
[shareContent setContentTitle:params.title];
[shareContent setContentDescription:description;
[shareContent setImageURL:imgURL;

It was working until my application redirect link wasn't in the live state. But now title and description is not visible when i post it to Facebook.

1
They recently documented a change for the Feed dialog, where it will not accept those additional parameters any more, if the target URL is a Facebook page, or points to an official app store – see the note here, developers.facebook.com/docs/sharing/reference/… / I would assume that they changed this internally so that it affects other ways of sharing as well.CBroe

1 Answers

1
votes

This question has been answered in the following link by the Facebook: https://developers.facebook.com/docs/sharing/reference/feed-dialog/v2.6#params

It cleares that of your application is sharing itunes link of google play store link then the description added to the content of the sharing dialog will not be posted on the Facebook.