0
在我目前正在開發的應用程序,我可以使用Facebook和Google+註冊。但是,當我加的能力只是一個普通電子郵件報名,我得到這個錯誤,我會感激一些幫助,請...Rails註冊與多種方式
下面是一些我的代碼
#SessionsController
def create
@user = User.from_omniauth(env["omniauth.auth"])
# session[:user_id] = @user.id
# redirect_to root_path
@user = User.find_by_email params[:email]
if @user && @user.authenticate(params[:password])
session[:user_id] = @user.id
redirect_to root_path
else
flash[:alert] = "Wrong email or password"
render :new
end
end
#user.rb
class User < ActiveRecord::Base
has_secure_password
def self.from_omniauth(auth)
where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
user.provider = auth.provider
user.uid = auth.uid
user.name = auth.info.name
user.email = auth.info.email
user.oauth_token = auth.credentials.token
user.oauth_expires_at = Time.at(auth.credentials.expires_at)
user.image = auth.info.image
user.gender = auth.extra.raw_info.gender
user.location = auth.extra.raw_info.location.name
user.location = auth.extra.raw_info.locale
# user.url = auth_hash['info']['urls'][user.provider.capitalize]
user.save
end
end
所以,當試圖使用電子郵件註冊,這是發生了什麼!
我猜錯誤來,因爲我打電話from_omniauth
和我不是一個合格供應商,我不需要在這種情況下使用。
嗨@BenHawker,感謝您的評論,但我試圖建立所有的用戶身份驗證,而不使用Devise ... –