2

我已经将Facebook 应用程序从 FBML 转换为 iFrame(使用 PHP SDK),现在显示的垂直滚动条与我之前拥有的相同数量的内容(一个徽标、一个 Flash 游戏和一行下面有 3 个链接)显示。但早些时候我没有任何滚动条。

如果我将应用程序设置为自动调整大小,那么内容的下部根本不会显示 - 这很糟糕,那么 Flash 游戏就无法玩了。

我四处搜索,所有建议的解决方案都涉及 Javascript,但我实际上使用的是 PHP SDK。没有只针对 PHP/CSS 的解决方案吗?

在我当前的代码下方:

<?php

require_once('facebook.php');

define('FB_API_ID', 'XXX');
define('FB_AUTH_SECRET', 'XXX');

$facebook = new Facebook(array(
            'appId'  => FB_API_ID,
            'secret' => FB_AUTH_SECRET,
            'cookie' => true,
            ));

if (! $facebook->getSession()) {
    printf('<script type="text/javascript">top.location.href="%s";</script>',
        $facebook->getLoginUrl(
                array('canvas'    => 1,
                      'fbconnect' => 0,
                      #'req_perms' => 'user_location',
        )));
    exit();
} else {
    try {
        $me = $facebook->api('/me');

        $first_name = $me['first_name'];
        $city       = $me['location']['name'];
        $female     = ($me['gender'] == 'male' ? 0 : 1);
        $avatar     = 'http://graph.facebook.com/' . $me['id'] . '/picture?type=large';

    } catch (FacebookApiException $e) {
        exit('Facebook error: ' . $e);
    }
}

# print the logo, the flash game and 3 links

?>

另外我不确定我的 PHP 脚本是否应该打印

<html>
<body> 
.....
</body>
</html>

? 目前我只打印身体内部的东西。

我想知道用 PHP 的header('Location: ....');替换我的代码中的top.location.href=....是否是个好主意 ?

4

4 回答 4

2

如果您打算使用异步方法,建议您在其中放置尽可能多的 FB 代码。像下面这样的东西应该可以工作:

<html>
<head>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
    FB.init({appId: 'your app id', status: true, cookie: true,
             xfbml: true});
    FB.Canvas.setSize();
};

function sizeChangeCallback() {
    FB.Canvas.setSize();
}
(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>
</body>
</html>

现在,sizeChangeCallback()每当您对布局进行更改(单击新选项卡、加载 Ajax 内容等)时,您都将调用该函数。

于 2011-05-09T16:28:14.713 回答
0

好的,我找到了解决方案

<html>
<head>
<script type="text/javascript">
window.fbAsyncInit = function() {
        FB.Canvas.setSize();
}

function sizeChangeCallback() {
        FB.Canvas.setSize();
}
</script>
</head>
<body>
......

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
        appId  : '<?php print(FB_API_ID); ?>',
        status : true,
        cookie : true,
        xfbml  : true
});
</script>
</body>
</html>

并在设置选项卡中将IFrame 大小设置为自动调整大小

header('位置:' . $url); 无论出于何种原因都不会工作。

于 2011-05-08T20:33:47.927 回答
0

我的解决方案每次都有效!在添加之前隐藏你的身体溢出。

<div id="fb-root" class="fb_reset"><script async="" src="https://connect.facebook.net/en_US/all.js"></script></div>
   <script type="text/javascript">
       window.fbAsyncInit = function() {
           FB.init({appId: '293887700673244', status: true, cookie: true, xfbml: true, oauth: true});
           window.setTimeout(function() {
               FB.Canvas.setAutoGrow(); }, 250);
       };

       (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>
于 2014-07-22T15:48:26.830 回答
0

我刚刚在我的博客上整理了一个相当广泛的教程,也使用了 PHP-SDK。除了摆脱那些滚动条之外,我还展示了如何创建一个扇门和一个简单的共享按钮。我希望我能帮助你们中的一些人:

http://net-bites.de/facebook/tutorial-how-to-create-facebook-iframe-pages-for-timeline-width-810px-with-fan-gate-and-share-button/

于 2012-08-05T18:08:01.833 回答