一切似乎都在我的最終工作正常。
所有我可以建議是
- 初始化的JavaScript SDK在異步,並把剛剛< body>標籤下面的代碼給它的時間來加載。 「它沒有失敗1次,出14次的嘗試就是爲什麼我建議。 https://developers.facebook.com/docs/reference/javascript/
- 使用通道的html文件,以加快加載的Internet Explorer。
這裏是用我如何使我的登錄按鈕的樣本解析XFBML和異步的JavaScript。
<div id="loginbutton"></div>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '135669679827333',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'https://anotherfeed.com/emo/channel.html', // channel.html file
oauth : true // enable OAuth 2.0
});
function loginbutton(){
var loginb=document.getElementById('loginbutton');
loginb.innerHTML='<div class="fb-login-button" data-show-faces="false" data-width="200" data-max-rows="1" data-autologoutlink="true" data-scope="read_stream,user_likes,publish_stream,publish_actions,read_friendlists,user_photos,user_groups,user_interests,user_videos"></div>';
FB.XFBML.parse(loginb);
};
loginbutton();
};
// Load the SDK Asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=135669679827333";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
您可以發佈與按鈕鏈接到一個示例頁面,我會幫你調試。 – 2012-04-10 13:10:49
http://www.enferno.se – 2012-04-11 12:40:07