Facebook iframe 画布应用程序重新加载问题

发布于 2025-01-03 02:37:50 字数 553 浏览 1 评论 0原文

当有人访问我的应用程序时,它会请求许可。用户单击登录按钮并授权应用程序后,仍然需要手动刷新。

我搜索并发现了与我相同的问题:

基本上我的问题是:

http://forum .developers.facebook.net/viewtopic.php?id=108432

http://forum.developers.facebook.net/viewtopic.php?id=108498

我尝试了这个解决方案,但它不起作用。

FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});

when someone visit my app, its asking permision. after user click login buton and authorizess app it still required manually refresh.

ı searched and found same problem with me:

basicly my problem is:

http://forum.developers.facebook.net/viewtopic.php?id=108432

http://forum.developers.facebook.net/viewtopic.php?id=108498

ı tried this solution but its not working.

FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});

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

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

发布评论

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

评论(1

毁梦 2025-01-10 02:37:50
FB.Event.subscribe('auth.login', function(response) {
  window.location.reload();
});

您不能盲目地重新加载窗口。首先查看响应(为了调试,可以放置一个 console.dir(response); 或一个 debugger; 这样你就可以看到响应对象的结构......或者只是阅读文档以查看结构)并确定它告诉您的内容,仅在必要时重新加载页面。

FB.Event.subscribe('auth.login', function(response) {
  window.location.reload();
});

You cannot blindly reload the window. Look at the response first (for debugging either put a console.dir(response); or a debugger; so you can see the structure of the response object .... or just read the documentation to see the structure) and determine what it is telling you, only reload the page when necessary.

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