我对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 时不会出现 flash 通知或 sign_in。