Facebookomniauth 回调和#_

发布于 2024-12-01 04:20:23 字数 585 浏览 0 评论 0原文

我使用 Rails 3.1、Devise 和 Omniauth。

问题是当 facebook 回调我的应用程序时 url 以 #_ 结尾。然后在回调动作时 我重定向到某些内容 - 例如 /after_signin 重定向结果为 /after_signin#_

知道如何从 URL 中删除这个锚点吗?

编辑: 我在回调函数中放入什么并不重要。 即使是简单的重定向:

class Users::OmniauthCallbacksController < ApplicationController
  def facebook
    redirect_to "/after_callback"
  end
end

它也会导致转到 /after_callback#_

即使在普通控制器中,如果您转到 /#_ 并且您有一些重定向 它将被重定向到指定的路径,并在末尾附加 #_

编辑2: 我刚刚发现保留锚点是浏览器的错误。所以它必须是 在前端处理。

I use Rails 3.1, Devise and Omniauth.

The problem is that when facebook callbacks to my app
the url ends with #_. Then when in the callback action
I redirect to something - for example /after_signin
the redirect results in /after_signin#_.

Any idea how to remove this anchor from the URL?

EDIT:
It does not matter what I put in the callback function.
Even simple redirect:

class Users::OmniauthCallbacksController < ApplicationController
  def facebook
    redirect_to "/after_callback"
  end
end

it would result in going to /after_callback#_

Even in normal controller if you go to /#_ and you have some redirect ther
it would get redirected to the specified path with #_ appended at the end.

EDIT2:
I just found out that it is the browser fault to preserve the anchor. So it has to be
handled in the frontend side.

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

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

发布评论

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

评论(1

烏雲後面有陽光 2024-12-08 04:20:23

如果您确信这是浏览器问题,则只需使用 JavaScript 更新 windowlocation 对象的 hash 部分即可。也许是这样的:

if (window.location.hash.search('#_') >= 0) {
    window.location.hash = '';
}

If you're confident that it's a browser issue, you can just use JavaScript to update the hash portion of the window's location object. Maybe something like this:

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