I have the problem that my facebook app page doesn't resize the height. I know there are a lot of questions from people that have similar problems. But I've tried setting FB.Canvas.setSize(), FB.Canvas.setAutoGrow() and a function that "should" resize the canvas page each 2 seconds and nothing works.
EDIT
I now tried it with a minimal code that should work (as fas as I understand it) but it don't.
Here is the code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Test</title>
<style type="text/css">body { overflow: hidden; }</style>
</head>
<body>
<div id="fb-root"></div>
<script type="text/javascript" src="https://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId: "xxxxxxxxxxxx",
cookie: true
});
};
window.onload = function() {
FB.Canvas.setAutoGrow(100);
}
</script>
<div style="height: 1000px; width: 20px; background-color: #006;"></div>
<div>End</div>
</body>
</html>
Here is a screenshot of the app settings:
