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 *appId = [[[NSBundle mainBundle] infoDictionary] 
                                          objectForKey:TSFacebookAppID];

NSMutableDictionary* params = 
[NSMutableDictionary dictionaryWithObjectsAndKeys:
                          appId,                @"app_id",
                          [url absoluteString], @"link
                          title,                @"caption",
                          body,                 @"description",
                          nil];

[facebook dialog:@"feed" andParams:params andDelegate:self];

The first time I attempt this, the dialog appears and immediately closes, calling the dialog:didFailWithError:error delegate method. The error is:

Error Domain=NSURLErrorDomain Code=-999 "The operation couldn’t be completed. (NSURLErrorDomain error -999.)" UserInfo=0x98f2ab0 {NSErrorFailingURLKey=https://m.facebook.com/dialog/feed?link=http%3A%2F%2Fwww.thescore.com%2Fhome%2Farticles%2F184248&description=Nadal%20pulls%20out%20of%20Paris%20to%20focus%20on%20ATP%20finals&access_token=BAABw00HZB06cBALT57lZCM24N4EOtPpOQeCgl7oLUvbHFR0ZAlwgAbPHQ7HANmlBE0aUKVNDmWNYsEqB0wXq28vm4D18T5hLTVDK3x2WjnVjgIVl75RPoOszSB21f4ZD&caption=Article%20from%20ScoreMobile%20for%20iPhone&app_id=124052647629735&redirect_uri=fbconnect%3A%2F%2Fsuccess&sdk=2&display=touch, NSErrorFailingURLStringKey=https://m.facebook.com/dialog/feed?link=http%3A%2F%2Fwww.thescore.com%2Fhome%2Farticles%2F184248&description=Nadal%20pulls%20out%20of%20Paris%20to%20focus%20on%20ATP%20finals&access_token=BAABw00HZB06cBALT57lZCM24N4EOtPpOQeCgl7oLUvbHFR0ZAlwgAbPHQ7HANmlBE0aUKVNDmWNYsEqB0wXq28vm4D18T5hLTVDK3x2WjnVjgIVl75RPoOszSB21f4ZD&caption=Article%20from%20ScoreMobile%20for%20iPhone&app_id=124052647629735&redirect_uri=fbconnect%3A%2F%2Fsuccess&sdk=2&display=touch}

However, subsequent attempts to share the link work fine.

link|improve this question

50% accept rate
1  
Yes! I am seeing 100% the same thing. New implementation, iOS5. Very same error. Subsequent attempts work fine. On app restart, attempts work fine because the session is still valid. But if I delete app and install fresh, again the first attempt fails (apparently caused by the SSO auth process somehow?) – Ethical Paul Nov 4 '11 at 18:08
feedback

5 Answers

Just an update for everyone, it's finally assigned to somebody at Facebook: https://developers.facebook.com/bugs/168127053284477 - hopefully it will be fixed soon.

Meanwhile, somebody sent a pull request on github with a fix: https://github.com/facebook/facebook-ios-sdk/pull/436

Hope it helps someone, as I was still facing the same bug..

link|improve this answer
feedback

I was also occasionally getting this -999 NSURLDomainError when trying to bring up the facebook post window. I took the strategy of ignoring the error code as Senior mentions in the comments.

The reason I don't feel so bad about this fix is that the FBLoginDialog actually already ignores this error. Check out the code in github:

https://github.com/facebook/facebook-ios-sdk/blob/master/src/FBLoginDialog.m#L85

So to be specific, here's what my webView:didFailLoadWithError method looks like in FBDialog.m now:

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
// 102 == WebKitErrorFrameLoadInterruptedByPolicyChange
NSLog(@"FBDialog webView didFailLoadWithError:%@ %d",error.domain,error.code);
if ([error.domain isEqualToString:@"NSURLErrorDomain"] && error.code == -999)
    return;

if ([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102)
    return;

[self dismissWithError:error animated:YES];
}
link|improve this answer
feedback
up vote 2 down vote accepted

In FBDialog.m, change this:

UIWindow* window = [UIApplication sharedApplication].keyWindow;
if (!window) {
    window = [[UIApplication sharedApplication].windows objectAtIndex:0];
}

To this:

UIWindow* window = [[UIApplication sharedApplication].windows objectAtIndex:0];

Problem solved! For me, at least.

link|improve this answer
I think this is a different problem. I saw this answer on another thread and had already tried it to no effect. The error we are seeing here is a webview rendering error that comes from Facebook's server (see the error in the log posted by the original poster). Hmm, you are the original poster. Curious. – Ethical Paul Nov 7 '11 at 14:39
After working on Friday, this solution no longer works. – Senior Nov 7 '11 at 19:03
3  
I ignore the error by changing line 413 of FBDialog.m to: if (!(([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102) || error.code == -999)), and now it works. – Senior Nov 7 '11 at 19:24
I would guess that it never worked--you just weren't seeing the problem because you were already logged into facebook. In my testing, the problem only occurs when first logging in. – Ethical Paul Nov 7 '11 at 21:17
I tested it pretty thoroughly; I have a sneaking suspicion that it's a race condition. I have a UIWebView onscreen in my app when I attempt to launch the dialog, and then Facebook presents its dialog using a UIWebView, so perhaps they're conflicting. – Senior Nov 8 '11 at 15:58
show 4 more comments
feedback

I traced it back as far as I think I can in dialog.m, which is line 414--dialog.m is sending the URLRequest for the dialog in a web view, but the web view is apparently getting an error back from Facebook's server.

I tried calling my [facebook dialog:@"feed"...] code after a 10 second delay after authentication, no dice--same error.

So then just for grins, I called my feed code from -dialog:didFailWithError... after checking to see if it was error -999. It works fine from that call. ????

link|improve this answer
feedback

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]);
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.