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?