Facebook iframe 画布应用程序重新加载问题
当有人访问我的应用程序时,它会请求许可。用户单击登录按钮并授权应用程序后,仍然需要手动刷新。
我搜索并发现了与我相同的问题:
基本上我的问题是:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能盲目地重新加载窗口。首先查看响应(为了调试,可以放置一个
console.dir(response);
或一个debugger;
这样你就可以看到响应对象的结构......或者只是阅读文档以查看结构)并确定它告诉您的内容,仅在必要时重新加载页面。You cannot blindly reload the window. Look at the response first (for debugging either put a
console.dir(response);
or adebugger;
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.