1
我有iframe Facebook應用程序,但重新加載使無限循環。我的Facebook應用程序使無限循環在SDK 3.1.1
昨天工作正常,但不是一天。
我使用的JavaScript和PHP SDK 3.1.1與此代碼:
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
oauth: true, // turn oauth
appId : 'myappId',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Canvas.setAutoGrow();
</script>
FB.getLoginStatus(function(response) {
if (response.session) {
var query = FB.Data.query('select publish_stream from permissions where uid={0}', response.authResponse.userID);
........................
}
}
如果我刪除"<script src="http://connect.facebook.net/en_US/all.js"></script>"
線,它沒有無限循環,但應用程序無法正常工作像我想要的。
當你刪除Facebook連接參考什麼是不工作?你表示你處在一個無限循環的地方?這表明你有問題,但是你的問題沒有得到足夠的具體解答,無法獲得幫助。 – ahsteele 2011-12-15 06:30:06