我写了一个Facebook应用程序,作为页面上的标签。
这是我的config.php文件,其中包含配置并重定向到身份验证页面,如果用户尚未批准该应用程序:
<?php
require_once("database.php");
require_once("functions.php");
require_once("facebook.php");
$config = array
(
'database' => array
(
'host' => 'localhost',
'name' => '***',
'username' => '***',
'password' => '***'
)
);
$db = new Database($config['database']['host'], $config['database']['name'], $config['database']['username'], $config['database']['password']);
$db->connect();
$facebook = new Facebook(array(
'appId' => '***',
'secret' => '***',
'cookie' => true
));
$user = $facebook->getUser();
if ($user)
{
try
{
$me = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
if ($user)
$logoutUrl = $facebook->getLogoutUrl();
else
{
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'email,user_about_me,user_likes,user_status,read_stream,offline_access,publish_stream,publish_actions'
));
}
if (!$user)
{
echo "<script type=\"text/javascript\">top.location.href = '".$loginUrl."';</script>";
}
?>
这是我的主要文件:
<?php
require_once("includes/config.php");
?>
<!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" xml:lang="he" lang="he" dir="rtl">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1255" />
<title>
שער 7 - הלב הצהוב | מכבי תל אביב
</title>
</head>
<body>
<?php
$clLike = $facebook->api('/me/likes/204623816223540');
if (!empty($clLike['data']))
echo "I'm a fan!";
else
echo "I'm not a fan :(";
?>
</body>
</html>
正如我之前提到的,这个应用程序在Facebook页面上作为标签工作,而不是作为一个独立的Facebook应用程序,因此没有画布网址。页面标签页为:http://www.gate7.co.il/fbapps/predictor/。
当用户进入选项卡时,他会被重定向到身份验证页面(来自config.php),但是当身份验证过程完成后,用户会被重定向到页面选项卡URL(http://www.gate7 .co.il / fbapps / predictor /)而不是页面内的标签。
我尝试将这些行添加到索引文件中:
<script type="text/javascript">
if (top.location.href != "http://www.facebook.com/gate7yellowheart?sk=app_196175180456372")
window.location = "http://www.facebook.com/gate7yellowheart?sk=app_196175180456372";
</script>
它在firefox上工作得很好,用户从页面标签页面重定向到页面中的实际标签,但是在Chrome中它只会导致混乱并在标签内显示facebook。
这是什么解决方案?
答案 0 :(得分:1)
在你的getLoginUrl()调用中,将redirect_uri param设置为标签页,如下所示:
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'email,user_about_me,user_likes,user_status,read_stream,offline_access,publish_stream,publish_actions',
'redirect_uri' => 'http://www.facebook.com/gate7yellowheart?sk=app_196175180456372'
));