I\'m using the latest Facebook SDK on iOS 5. I can use SSO to successfully authenticate the user, and then I attempt to share a link like this:
NSString *app
Until facebook patch their SDK, I did'nt find any better solution than this one :
- (void)dialog:(FBDialog *)dialog didFailWithError:(NSError *)error{
if([error code] == -999){
DLog(@"Error -999 found re-open webview");
[facebook dialog:@"apprequests"
andParams:_dialogParams
andDelegate:self];
}else{
DLog(@"Error opening facebook dialog : %@", [error description]);
}
}