I have integrated the facebook SDK with version 3.17.1 in my application and I am not able to dismiss the FBWebDialogs programmatically, I have tried the solutions provided in this link: "https://stackoverflow.com/questions/21741101/how-to-dismiss-fbwebdialogs" but no use.
Code snippet to present the FBWebDialogs:
[FBWebDialogs presentFeedDialogModallyWithSession:nil parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error)
{
DLog(@"FBSESSION IS : %@", FBSession.activeSession);
if (error) {
// An error occurred, we need to handle the error
// See: https://developers.facebook.com/docs/ios/errors
DLog(@"%@",[NSString stringWithFormat:@"Error publishing story: %@", error.description]);
} else {
if (result == FBWebDialogResultDialogNotCompleted) {
// User canceled.
DLog(@"User cancelled.");
} else {
// Handle the publish feed callback
NSDictionary *urlParams = [self parseURLParams:[resultURL query]];
if (![urlParams valueForKey:@"post_id"]) {
// User canceled.
DLog(@"User cancelled.");
} else {
// User clicked the Share button
NSString *result = [NSString stringWithFormat: @"Posted story, id: %@", [urlParams valueForKey:@"post_id"]];
DLog(@"result %@", result);
}
}
}
}];
Can anyone help me to sort out this issue?