检测与Facebook JavaScript API + iFrame一样

时间:2011-04-29 12:29:12

标签: facebook facebook-graph-api fbml xfbml

使用Facebook JavaScript API构建应用程序,该应用程序将使用新的iframe方法嵌入到页面中。

我想检测他们是否喜欢当前页面。通常我会在PHP中使用print_r($ _ REQUEST),但在使用iframe时这似乎不起作用。

还有这个选项:http://developers.facebook.com/docs/reference/fbml/visible-to-connection/但它说它已被弃用了,我从来不喜欢这种方法,因为它相当hacky。

现在这样做的方法是什么?喜欢使用XFBML + JavaScript API,但如果需要可以使用PHP。

1 个答案:

答案 0 :(得分:3)

我们已经多次这样做了,而且似乎工作得很好。它使用XFBML生成Like Button widget和JS SDK来呈现XFBML并订阅Facebook events。代码示例如下:

编辑:因为您希望在页面加载时检测用户是否是粉丝,并且FB弃用了该功能,以便在通过传递加载画布时直接从中获取它fb_page_id到地址查询字符串,您需要安装应用程序,以便用户测试他们的页面粉丝。它肯定会给你的应用程序增加很多摩擦,但它现在就是这样 - 我想。

    <?php
require 'facebook.php';

// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
    'appId'  => 'YOUR APP ID',
    'secret' => 'YOUR APP SECRET',
    'cookie' => false,
));

try
{
    $session = $facebook->getSession();

    if (empty($session['uid']))
    {
        throw new Exception("User not connected to application.");
    }

    $is_fan = $facebook->api(array(
        'method'    => 'fql.query',
        'query'     => "SELECT uid, page_id FROM page_fan WHERE uid = {$session['uid']}"
    ));

    if (false == $is_fan || count($is_fan) == 0) // 0 results will be returned if the user is not a fan
    {
        $is_fan = false;
    }
    else
    {
        $is_fan = true;
    }   
}
catch (FacebookApiException $e)
{
    /**
     * you don't have an active user session or required permissions 
     * for this user, so rdr to facebook to login.
    **/

    $loginUrl = $facebook->getLoginUrl(array(
        'req_perms' => 'user_likes'
    ));

    header('Location: ' . $loginUrl);
    exit;
}
?>
<html>
<head>
</head>
<body>

<? if (empty($is_fan)): //user is not a fan. ?>
    <fb:like href="http://www.facebook.com/your-facebook-page"
        show_faces="true"
        width="400">
    </fb:like>
<? else: ?>
    Yay! You're a fan!
<? endif; >?

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

// Subscribe to the edge creation event, from Facebook
FB.Event.subscribe('edge.create', function(response)
{
    alert("Congratulations! We are so excited that you are a fan now! woot!")
});

</script>

</body>
</html>
好吧,终于得到了所有格式化的直接降价。这根本不痛苦。(sike):|