我正在通过window.fbAsyncInit函数加载facebook js sdk。它在chrome中运行良好,但在safari和firefox中FB.Auth._loadState的状态为'loading',而FB的函数正在运行。
遇到同样问题的人?我需要设置一些特殊的标题吗?
任何帮助将不胜感激。
更新
<div id="fb-root"></div>
<script>
var app_id = <?=conf_app_id?>;
window.fbAsyncInit = function() {
FB.init({appId: app_id, status: true, oauth: true, cookie: true, channelUrl: 'https://www.example.com/channel.html'});
}
$(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>
我认为这可能是负载均衡器的一个问题:(有没有人知道facebook是否在加载sdk后交叉检查ip / session或者什么东西?!