Facebook 画布应用程序重定向到 Facebook 徽标
我正在使用 OmniAuth gem 开发 Facebook 画布应用程序,当我单击登录时,它只是将我重定向到带有 Facebook 徽标的空白页面,然后您必须再次单击该页面。有没有办法让它直接进入权限页面?
I am using OmniAuth gem to develop a Facebook canvas application and when I click log in, it just redirects me to a blank page that has the Facebook logo and then you have to click that again. Is there a way to make it so that it goes directly to the permission page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您遇到的问题是,当使用 Javascript 执行重定向时,您实际上重定向的是 iframe,而不是整个网页。这会导致 Facebook 页面显示在 iframe 内,该页面会被检测到并导致出现徽标 + 空白页面。您想要的是在整个页面上执行重定向。这可以通过以下方式实现:
I think the problem you're experiencing is that when a redirect is performed using Javascript you actually redirect the iframe and not the whole web page. This causes a facebook page to be displayed inside an iframe, which gets detected and causes the logo + blank page to appear instead. What you want is to perform a redirect on the whole page. This can be achieved using: