Facebook JS SDK を使用しようとすると、エラーが発生し続けますFB undefined
。IE の JavaScript デバッガーで監視すると、ページの読み込み中に正しく実行されますが、最後には未定義であり、サブスクライブされているイベントは発生しません。目標: ページ タブで最上位レベルのページを更新し、ファン ゲートを通過すること。
ここで何が欠けているかについてのアイデアはありますか?
コード:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function(){
FB.init({
appId : 'APP CODE INSERTED HERE',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'URL to Channel .ASPX'
});
// Additional initialization code here
FB.Event.subscribe('edge.create',
function(response){
top.location.href = 'Page to refreshed inserted here';
});
};
(function(d)
{
var js, id = 'facebook-jssdk';
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document)
);
</script>