Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to add a Facebook Comments box in an iOS app using a UIWebView. But the webview doesn't render anything. I also get errors from the webview: The operation couldn’t be completed. (NSURLErrorDomain error -999.)

I'm loading an external page with the following code into the webview:

<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
 </head>
 <body>
    <fb:comments href="http://x-com.se" num_posts="20" width="470" />
 <div id="fb-root"></div>
 <script>
 window.fbAsyncInit = function() {
    FB.init({
    appId: '161668960642566', status: true, cookie: true, xfbml: true,oauth: true}); };
    (function() {
    var e = document.createElement('script');
    e.type = 'text/javascript';
    e.src = document.location.protocol + 'http://connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
  }());

  (function(d){
  var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
  if (d.getElementById(id)) {return;}
  js = d.createElement('script'); js.id = id; js.async = true;
  js.src = "http://connect.facebook.net/en_US/all.js";
  ref.parentNode.insertBefore(js, ref);
  }(document));
  </script> 

  </body>
</html>

It works great in Safari both on the iPhone and OSX. But in an webview, all I get is the -999 errors...

And all I do in objective-c is:

- (void)viewDidLoad
{
    [super viewDidLoad];

    [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://url-to-the-above.code"]]];
}

Anybody that has got it to work?

share|improve this question
same for me. I'm thinking about giving up implementing facebook comment in my app – Julien Nov 19 '12 at 17:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.