设计+ Omniauth +难忘的
我按照 github devise wiki 上的教程进行操作: https://github.com/plataformatec/devise/wiki/OmniAuth%3A-概述
因此,我为回调创建了一个omniauth 控制器,但它绕过了正常的会话控制器,因此,未设置可记住的cookie。
对我来说解决这个问题的最佳方法是什么?
感谢您的帮助。
编辑:我的控制器代码的要点:https://gist.github.com/913164 所以我认为重定向中的登录只是设置会话 cookie,而不是可记住的 cookie。
编辑2:我还有一个用于开发人员登录的后门,并避免在我的本地计算机上进行FB连接:
def backdoor
if RAILS_ENV == "development"
@user = User.first
@user.remember_me!
sign_in_and_redirect @user, :event => :authentication
end
end
也不起作用,所以我可能在其他地方遇到问题。
I followed the tutorial on the github devise wiki :
https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview
So I've created a omniauth controller for the callbacks, but it is bypassing the normal sessions controller and so, the rememberable cookie is not set.
What is the best way for me to fix that ?
Thanks for your help.
EDIT : The Gist from my controller code : https://gist.github.com/913164
So I think the sign in an redirect just set the session cookie, not the rememberable one.
EDIT 2 : I also have a backdoor for dev sign in and avoid FB connect on my local machine :
def backdoor
if RAILS_ENV == "development"
@user = User.first
@user.remember_me!
sign_in_and_redirect @user, :event => :authentication
end
end
Doesn't work either, so I might have a problem somewhere else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该死的,这太旧了,抱歉让它留在这里这么久。
从我在 11' 的评论中的回答来看,我忘记添加以下内容:
现在让我们关闭它。
Damn this is old, sorry to let this stay here this long.
From my answer in the comments apparently in 11', I forgot to add this:
Now let's close this.