日前在製作 Facebook 專案時,是採用聯外通登入後發佈塗鴉牆的模式,但發現在登入後時常會多跳一個空白視窗(blank window),並包含一個 JavaScript 錯誤:
訊息: ‘FB.XD.resolveRelation(…).FB’ 是 null 或不是一個物件行: 16字元: 2193程式碼: 0URI: http://connect.facebook.net/zh_TW/all.js
[code language=”html”]
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId: ‘FB APP 的 ID’, status: true, cookie: true, xfbml: false});
};
(function() {
var e = document.createElement(‘script’); e.async = true;
e.src = document.location.protocol + ‘//connect.facebook.net/zh_TW/all.js’;
document.getElementById(‘fb-root’).appendChild(e);
}());
</script>
[/code]
[code language=”html”]
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : ‘YOUR_APP_ID’, // App ID from the App Dashboard
channelUrl : ‘//WWW.YOUR_DOMAIN.COM/channel.html’, // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
// Additional initialization code such as adding Event Listeners goes here
};
// Load the SDK’s source Asynchronously
// Note that the debug version is being actively developed and might
// contain some type checks that are overly strict.
// Please report such bugs using the bugs tool.
(function(d, debug){
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 = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
[/code]
[code language=”html”]
<script src="//connect.facebook.net/zh_TW/all.js"></script>
[/code]