繁体   English   中英

新用户的 Devise Omniauth “encrypted_password may not be NULL”

[英]Devise Omniauth “encrypted_password may not be NULL” for new user

我正在使用 Devise 和 Omniauth 让用户使用 Facebook 登录我的应用程序。 我使用 Railscast 教程来启动和运行它。

如果用户已经是我的站点的成员,则通过 facebook 进行身份验证可以正常工作。 使用 facebook 验证新用户时会出现问题。 当它为我的用户 model 创建新用户时,我收到“users.encrypted_password may not be NULL”错误。 我不知道如何从 Facebook 信息中将密码传递给用户 model。

这就是我所拥有的:

authentations_controller.rb

class AuthenticationsController < ApplicationController
 def index
  @authentications = current_user.authentications if current_user
 end

def create
  omniauth = request.env["omniauth.auth"]
  authentication = Authentication.find_by_provider_and_uid(omniauth['provider'],   omniauth['uid'])
 if authentication
   flash[:notice] = "Signed in successfully."
   sign_in_and_redirect(:user, authentication.user)
 elsif current_user
   current_user.authentications.create!(:provider => omniauth['provider'], :uid => omniauth['uid'])
   flash[:notice] = "Authentication successful."
   redirect_to authentications_url
 else
   user = User.new
   user.apply_omniauth(omniauth)
   if user.save
     flash[:notice] = "Signed in successfully."
     sign_in_and_redirect(:user, user)
   else
     session[:omniauth] = omniauth.except('extra')
     redirect_to new_user_registration_url
   end
  end
end

用户.rb

 def apply_omniauth(omniauth)
  self.email = omniauth['user_info']['email'] if email.blank?
  authentications.build(:provider => omniauth['provider'], :uid => omniauth['uid'])
 end


 def password_required?
   (authentications.empty? || !password.blank?) && super
 end

任何帮助都会很棒,在此先感谢!

Add:password => Devise.friendly_token[0,20] 从 facebook omniauth 创建新用户时。

我相信 Devise 期望在密码字段中创建用户。 由于在执行 facebook oauth 时没有密码(至少不在您的应用程序端),您只需要创建一个虚拟密码,如上所示。

有关更多信息,请参见: https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM