我与Pow和Omniauth有一个奇怪的问题。 Omniauth(Facebook登录)在使用localhost:3000时工作正常,但是当使用Pow(appname.dev)时,事情变得可疑。
如果数据库中不存在用户,则会对其进行重定向并正确创建。但是,在此之后,它们将被重定向到root_path并且未登录。它们的记录按预期保存在数据库中,但不会发生登录。同样,这只发生在Pow(和lvh.me)上,而不是发生在localhost上。
有什么想法吗?
我使用Devise/Omniauth方法登录,控制器代码如下所示:
def facebook
@user = User.find_for_facebook_oauth(request.env["omniauth.auth"], current_user)
if @user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Facebook"
sign_in_and_redirect @user, :event => :authentication
else
session["devise.facebook_data"] = request.env["omniauth.auth"]
redirect_to new_user_registration_url
end
end
同样,用户是持久的,但使用POW时没有闪现通知或sign_in。
答案 0 :(得分:0)
检查会话是否正在设置,因为可能会阻止它(例如需要清除浏览器cookie。)