I am trying to share a link on the Facebook using FBSDKShareLinkContent
.
I have set the URL, description and title. SDK is automatically populates the titl
I've faced a same problem and found out one workaround - direct setting mode of FBSDKShareDialog instance to FBSDKShareDialogModeFeedWeb.
FBSDKShareDialog* dialog = [[FBSDKShareDialog alloc] init];
dialog.mode = FBSDKShareDialogModeFeedWeb;
dialog.shareContent = content;
dialog.fromViewController = self;
[dialog show];
It displays the feed dialog in a UIWebView within the app with preview of your post with right title and description.