Facebook 应用程序在 Firefox 中加载正常,但在 Internet Explorer 7、8、9 中不断重新加载

发布于 2024-11-03 12:54:17 字数 609 浏览 0 评论 0原文

请在此处检查我的应用程序 - http://apps.facebook.com/indianresults

此应用程序正在加载并运行在 Firefox 中正常,但在 Internet Explorer 中不断重新加载。我使用一个简单的代码:

$auth_url = "http://www.facebook.com/dialog/oauth?client_id="
            . $app_id . "&redirect_uri=" . urlencode($canvas_page)."&scope=$permissions";
$me = $facebook->api('/me');
if(!$me)
{
           echo "<br>I am about to reload<br>";

           echo("<script> top.location.href='" . $auth_url . "'</script>");
}

如果有人能指出问题,我将不胜感激。

please check my app here- http://apps.facebook.com/indianresults

This app is loading and working fine in firefox but keeps reloading in Internet Explorer. I am using a simple code:

$auth_url = "http://www.facebook.com/dialog/oauth?client_id="
            . $app_id . "&redirect_uri=" . urlencode($canvas_page)."&scope=$permissions";
$me = $facebook->api('/me');
if(!$me)
{
           echo "<br>I am about to reload<br>";

           echo("<script> top.location.href='" . $auth_url . "'</script>");
}

Would be grateful if someone can pin point the problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半山落雨半山空 2024-11-10 12:54:32

尝试在文档顶部发送此标题。在使用 Facebook 时帮助我解决了一些类似的 IE 特定问题。

header('P3P: CP="CAO PSA OUR"');

Try sending this header in the top off your document. Have helpt me with some similar IE specific problems when working with Facebook.

header('P3P: CP="CAO PSA OUR"');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文