Facebook 画布应用程序重定向到 Facebook 徽标

发布于 2024-11-03 11:37:03 字数 111 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

夜未央樱花落 2024-11-10 11:37:03

我认为您遇到的问题是,当使用 Javascript 执行重定向时,您实际上重定向的是 iframe,而不是整个网页。这会导致 Facebook 页面显示在 iframe 内,该页面会被检测到并导致出现徽标 + 空白页面。您想要的是在整个页面上执行重定向。这可以通过以下方式实现:

window.top.location = somelocation;

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:

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