Chrome中的错误/即从粉丝页面重定向到Facebook应用程序

时间:2011-10-21 20:23:20

标签: facebook facebook-iframe

我在这里有点困惑。基本问题是在我的粉丝页面上,当我点击应用程序的图标我使它在firefox中工作正常,但在IE中我得到错误“此内容无法在框架中显示”和铬在它只是从来没有打开应用程序并空白。在我创建应用程序以及测试帐户的Facebook个人资料中发生了这种情况。奇怪的是,在我的其他Facebook帐户上,它在所有浏览器上都能正常运行。该应用程序也适用于直接从搜索或最近的应用程序。我最近更改了应用程序名称和安全ID,并将其重新连接到我的页面。在应用设置下,我的标签网址是正确的。我的画布页面顶部的代码包含:

<?php       
$app_id = "181247898619054";
$app_secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxx";
$my_url = "https://apps.facebook.com/wellnessq/";
session_register();
session_start();


if (!isset($_REQUEST["code"]))
{
 $_SESSION['state'] = md5(uniqid(rand(), TRUE)); //CSRF protection
 $dialog_url = "http://www.facebook.com/dialog/oauth?client_id=" 
   . $app_id . "&redirect_uri=" . urlencode($my_url) . "&scope=email&state="
   . $_SESSION['state'];

 echo("<script> top.location.href='" . $dialog_url . "'</script>");
exit;
}
$code = $_REQUEST['code'];
{
  $token_url = "https://graph.facebook.com/oauth/access_token?"
   . "client_id=" . $app_id . "&redirect_uri=" . urlencode($my_url)
   . "&client_secret=" . $app_secret . "&code=" . $code;

 $response = file_get_contents($token_url);
 $params = null;
  parse_str($response, $params);

  $graph_url = "https://graph.facebook.com/me?access_token=" 
   . $params['access_token'];

  $user = json_decode(file_get_contents($graph_url));
 }

?> 

有什么想法吗?如果你想亲自看到错误,请告诉我,我会发布在哪里找到它们。谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用PHP标头重定向到您的链接吗?

header( 'Location: http://www.yoursite.com/new_page.html' ) ;