I've been wrestling with problems using Facebook Connect on IE8 and i've reached a dead-end it would seem:
We have a Facebook game (Canvas iFrame) which had problems reported when using IE8. We've followed the instructions on the FB.init developer page exactly, but got nowhere.
We tried using the channelUrl fix and various kinds of fixes all as outlined here.
Our response headers are sending the P3P header:
P3P CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
We also tested async and sync versions of this integration, neither yielded any differences in outcomes.
In spite of all our efforts, on IE8, FB.getSession() always returns an undefined value. There is plenty of information I have reviewed, though disappointedly had no success, in the bug reported to Facebook which they resolved as not a bug... despite ongoing reports of the issue from users on the thread long after they considered it resolved.
In a last ditch attempt I'm turning to here, and start with a sanity of an test FB app which has nothing contained within it except the FB.init JS example added with some console logging to show that the FB.getSession has got a uid.
If you are replying to this, please can I ask that you are checking this against IE8 and are looking at the console, which on a successful load of the FB session will write
FB: [object Object] FB.getSession().uid: [your fb id]
http://apps.facebook.com/fb-js-issue
The code there is as follows:
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId: 'appId',
status: true,
xfbml: true,
cookie: true,
channelUrl: "http://ourserver.com/channelUrl.htm"
});
FB.Canvas.setAutoResize();
console.log("Running FB test");
setTimeout(function() {
console.log("FB: " + FB + " FB.getSession().uid: " + FB.getSession().uid);
}, 5000);
};
(function () {
var e = document.createElement('script');
e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
So by and large that sample app works fine, though in rare case even that has problems.
Our real apps (which use the same FB.init method) consistently suffer FB.getSession undefined problems on IE, thus fail to load
http://apps.facebook.com/party-on
UPDATE : We have determined that the problem more severely affect IE8 on Windows XP or Vista - IE8 on Windows 7 seems to be less problematic (although not 100%)
How to get past this?
So.. given that the problem seems pretty common and no fix is clear, short of some serious magic which hasn't yet been discussed publicly which will finally fix this issue, what would be really instructive would be highlighting other possible ways to integrate with FB.connect other than the one they show
The reason I mention this is when you look at how CityVille and FarmVille do their FB integration it's nothing remotely close to what FB themselves author as developer docs.. Hmm, interesting
Any fresh ideas and different angles would be massively welcomed at this stage!!