嘿,我试图将omniauth 集成到我的应用程序中,但我没有使用设计。我正在关注 Ryan Bates 屏幕投射 OmniAuth 第 2 部分 #236,他假设每个人都在使用设计。在 authentication_controller.rb 中有一个设计特定的代码
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
结尾
它的sign_in_and_redirect
当我刷新我的页面时,我得到一个
undefined method `sign_in_and_redirect'
有没有人知道解决这个问题...我对 Rails 很陌生,所以一步一步是理想的。
也谢谢大家,如果有人知道一个很好的教程,涵盖在没有 DEVISE 的情况下集成 OmniAuth 也会很棒。