通常設計好的FB APP要放在fb上的時候
都會因為FB app頁面會出現scroll bar讓畫面變的不好看
其實可以加上setAutoGrow設定 就可以讓
FB app Canvas的頁面沒有Scroll bar
在fbInit上加上FB.Canvas.setAutoResize.
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID', // App ID
channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
});
FB.Canvas.setAutoGrow();
}
不過因為FB dev eloper上面有註明
This method is only enabled when Canvas Height is set to "Fixed at (800)px" in the App Dashboard.
所以記得在FB app設定上 Canvas 高度要設成 Fixed at(800)px 這樣才會正常。
留言