My question is the next. I am allowing to the user to post a link from an iOS native app. Using the old dialog system was possbile to display a thumbnail/preview of the link in the dialog pop up. That was very informative to the user. In the new native dialog system is not appearing the content is gonna be shared, instead appears a placeholder with a cute compass fixed with a paperclip. Is it possible to display the contents are gonna be shared instead of the compass thumbnail? (I know with photos is working but don't know how to make it work with links) Here is the code I am using:
[FBNativeDialogs presentShareDialogModallyFrom:self
initialText: nil
image: nil
url: [NSURL URLWithString:href]
handler:^(FBNativeDialogResult result, NSError *error) {
if (error) {
}
else
{
switch (result) {
case FBNativeDialogResultSucceeded:
{
}
break;
case FBNativeDialogResultCancelled:
break;
case FBNativeDialogResultError:
break;
}
}
}];