Facebookomniauth 回调和#_
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确信这是浏览器问题,则只需使用 JavaScript 更新
window
的location
对象的hash
部分即可。也许是这样的:If you're confident that it's a browser issue, you can just use JavaScript to update the
hash
portion of thewindow
'slocation
object. Maybe something like this: