如何检测Facebook的FB.init何时完成
2022-08-30 05:06:28
旧的JS SDK有一个名为FB.ensureInit的函数。新的SDK似乎没有这样的功能...如何确保在完全启动 API 调用之前不进行 API 调用?
我在每个页面的顶部都包含这个:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $conf['fb']['appid']; ?>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Canvas.setAutoResize();
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>