Facebook 应用程序在 Firefox 中加载正常,但在 Internet Explorer 7、8、9 中不断重新加载
请在此处检查我的应用程序 - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在文档顶部发送此标题。在使用 Facebook 时帮助我解决了一些类似的 IE 特定问题。
Try sending this header in the top off your document. Have helpt me with some similar IE specific problems when working with Facebook.