0

我在 facebook 上有一个应用程序,我只使用页面标签,一切都很好。我点击喜欢,我允许应用程序,请求权限,我允许,但现在它回到页面并且出现错误,它一遍又一遍地重新加载......页面无法加载,因为浏览器总是重新加载它,我不知道如何解决它...

非常感谢

这是我的代码:

<?php

require_once "sdk/facebook.php";

$app_id = "MY_APPID";
$app_secret = "MY_SECRET";

$is_fan = false;

// Init facebook api.
$facebook = new Facebook(array(
    'appId' => $app_id,
    'secret' => $app_secret,
    'cookie' => true
));

// Get and decode signed request.
$signed_request = $facebook->getSignedRequest();
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)
    );
    $signed_request = $data;
}
else {
    $signed_request = false;
}

// Determine if we have a fan request.
if($signed_request) {
    if($signed_request->page->liked) {
        $is_fan = true;
    }
}

// for fans
if ($is_fan) { ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="css/style.css" rel="stylesheet" type="text/css" />       

    <script>
      var oauth_url = 'https://www.facebook.com/dialog/oauth/';
      oauth_url += '?client_id=414328901957674';
      oauth_url += '&redirect_uri=' + encodeURIComponent('https://www.facebook.com/pages/null/167838393340757/?sk=app_414328901957674');
      oauth_url += '&scope=user_birthday,user_likes,photo_upload,publish_stream,user_about_me,user_photos,user_hometown,user_location'

      window.top.location = oauth_url;
    </script>

    </head>
    <body background="images/fanda.jpg" style="overflow:hidden;"">
      </body>

<?php }

// for non-fans
else { ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="css/style.css" rel="stylesheet" type="text/css" />       
    </head>
     <body background="images/klikni-like.jpg" style="overflow:hidden;">
     </body>

<?php } ?>
4

2 回答 2

0

我找到了解决您问题的方法。当你检查 if($is_fan) 时更新这个:

$user_id = $facebook->getUser();
if ($is_fan) {  
      if($user_id)
          {
               code after authentication and page Liked
          }

             }
else  {
          <script>
              var oauth_url = 'https://www.facebook.com/dialog/oauth/';
              ................ Next 4 lines same as the above code ..............
          </script>
      }
于 2012-09-01T22:18:40.127 回答
0

当某人是粉丝时,您的脚本总是在做:

window.top.location = oauth_url;

如果某人是粉丝,这将导致页面无限重新加载。

于 2012-08-11T18:23:07.807 回答