使用Facebook PHP SDK确定用户是否喜欢我的页面?

时间:2012-02-06 16:58:07

标签: php facebook facebook-graph-api facebook-like

我的搜索空洞,因为当您搜索“Facebook”和“喜欢”时,我会得到各种其他结果。

我的应用只在我公司的Facebook页面上。在那个应用程序中,我需要找出用户是否喜欢该公司的页面。如果没有,我会展示一件事,如果是的话我会展示另一件事。我怎么能用Facebook PHP SDK v.3.1.1做到这一点?

5 个答案:

答案 0 :(得分:4)

可以这样做:

<?php
    require('facebook.php');
    $config = array(
         'appId' => 'your facebook app id',
         'secret' => 'your facebook app secret code',

        'allowSignedRequest' => false
    );
    $facebook = new Facebook($config);
    $user_id = $facebook->getUser();
    if (isset($user_id)) {
        try {           
            $likes = $facebook->api('/me/likes/your_facebook_page_id_here', 'GET');             

            if (!empty($likes['data'])) // if user has liked the page then $likes['data'] wont be empty otherwise it will be empty
            {
                echo 'Thank you for liking our fan page!';                   

            }             
            else {                                       
                 //show something else                   
            }
        } catch (FacebookApiException $e) {
            $login_url = $facebook->getLoginUrl();
            echo '<a href="' . $login_url . '">Please click here to login into your Facebook account.</a>';
            error_log($e->getType());
            error_log($e->getMessage());
        }
    } else {
        $login_url = $facebook->getLoginUrl();
        echo '<a href="' . $login_url . '">Please lick here to login into your Facebook account</a>';
    }
    ?>

用户将点击&#34;请点击此处登录您的Facebook帐户。&#34;文本将其重定向到Facebook应用程序权限页面,一旦用户允许您的应用程序的权限,代码将获取用户的数据,并将显示您想要的,如果用户不喜欢您的粉丝页面。

答案 1 :(得分:3)

您可以使用FQL执行此操作。您还需要确保已设置user_likes权限。

我从一个现在处于离线状态的旧应用程序中提取此示例,可能需要根据Facebook在上一轮更新中的更改进行更改。最近我一直在使用javascript,我订阅了edge.create事件....只需将page_id替换为你的页面id并尝试一下

$checkIfUserLikePage =  $facebook->api(array(
    "method"    => "fql.query",
    "query"     => "select uid from page_fan where uid=me() and page_id=1234567"
));
$checkIfUserLikePage = sizeof($checkIfUserLikePage) == 1 ? true : false;

答案 2 :(得分:2)

这对你有用!我不得不做很多这些类型的页面,所以我创建了一个非常简单的方法来创建像门控页面。 https://github.com/DrewDahlman/FBVersion

享受!

答案 3 :(得分:1)

$signed_request = $_REQUEST['signed_request'];

    function parsePageSignedRequest() {
            if (isset($_REQUEST['signed_request'])) {
                    $encoded_sig = null;
                    $payload = null;
                    list($encoded_sig, $payload) = explode('.', $_REQUEST['signed_request'], 2);
                    $sig = base64_decode(strtr($encoded_sig, '-_', '+/'));
                    $data = json_decode(base64_decode(strtr($payload, '-_', '+/'), true));
                    return $data;
                }
            return false;
            }
        if($signed_request = parsePageSignedRequest()) {
            if($signed_request->page->liked) {

            $this->assign('verify', $signed_request->page->liked);
            } 
            else {
                echo "Please click on the Like button to view our Coupons!";
                jexit();
            }
    } 

我希望这会对你有所帮助:)。

答案 4 :(得分:0)

老话题,但是想要权衡,因为我最近学到了很多关于如何做到这一点并且不得不付诸实践。

看一下这个链接:http://nickring.com/blog/2012/11/facebook-fan-gate-using-php/。它使用signed_request变量作为其他一些响应显示,但它显示了它不需要通过signed_request请求$_REQUEST变量。

要记住的一件事是signed_request仅在访问signed_request的PHP脚本在Facebook中运行时才可用。如果您在Facebook之外运行此脚本试图使用Facebook API的脚本,它将返回一个空数组。

以下是一个示例 - 当您转到此地址时,将运行以下脚本:https://www.facebook.com/yourFacebookPage/app_xxxxxxxxxxxxxxx,其中“xxxxxxxxxxxxxxx”为应用ID。

// Check if the user has liked us on Facebook, require the Facebook SDK
require_once('linked/facebook/facebook.php');

// Setup the Config
$config = array(
    'appId' => 'xxxxxxxxxxxxxxxxx',
    'secret' => 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy',
    'cookie' => true
);

// Create a Facebook SDK instance
$facebook = new Facebook($config);

// Get the signed_request variable that we so desparately need
$signed_request = $facebook->getSignedRequest();
$like_status = $signed_request["page"]["liked"];

// Make sure that it worked
if (!empty($signed_request))
{
    // Get the signed_request information
    if ($like_status == 1)
    {
        // Wo0t! Show the FB fan only page stuff here

    }
    else
    {
        // Show the 'Please like us page'
        $page = file_get_contents('pages/facebookLikeUs.html');

        // Finish the page
        echo $page;
        exit();

    } // End if ($like_status == 1) ELSE Clause and IF

} // End if (!empty($signed_request)) IF Clause
else
{
    // Damn, it didn't work. Show an error
}

以上脚本是从应用程序设置的“App on Facebook”部分的Canvas URL中设置的URL调用的脚本。 facebookLikeUs.html页面只是一个页面,要求他们点击“赞”继续。如果我处于这种情况,我希望将它们重定向回一个需要Facebook的网站,就像我只需用以下内容替换// Wo0t!部分:

    // Wo0t! They're all set, establish some cookies, get a cookie, and redirect back to the PHD program site
    setcookie('fbls', $signed_request['page']['id'] . '-' . $signed_request['user_id'], time() + 300);
    $redirectURL = "http://www.myurl.com/theScriptIWantToReceiveTheUserFromFB.php";

    // Since Facebook really wants to keep us in the page, we need to create a page that will automatically break out of FB
    $page = file_get_contents('pages/facebookRedirectBack.html');

    // Replace some stuff
    $page = str_replace('$redirectURL', $redirectURL, $page);

    // Output the page
    echo $page;
    exit();

facebookRedirectBack.html页面是这样的:

<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
window.top.location.href = '$redirectURL';
</script>
</body>
</html>

如果您希望在此方面获得更多安全性,可以让重定向PHP脚本编写一些cookie并将其附加到URL,以便接收脚本必须比较cookie和URL参数然后删除cookie他们被读完之后。

希望这有帮助,因为我个人没有找到有关此主题的任何一致信息。