0
我想分開我的oauth重定向路徑。一個是Facebook和谷歌(register/info1
),另一個是twitter(register/info2
)。設計omniauth(oauth)sign_in和sign_up路徑設置
- 我的用戶在第一次註冊時會轉到
register/info(1/2)
頁面。用戶註冊並在下次登錄 後,他們去
home/main
,而不是register/info(1/2)
但
after_sign_up_path_for
方法omniauth_callback_controller
不工作。所以,用戶總是去register/info(1/2)
。 目前,我設置我的omniauth_callback_controllers.rb
這樣。
類用戶:: OmniauthCallbacksController < 設計:: OmniauthCallbacksController
def self.provides_callback_for(provider)
class_eval %Q{
def #{provider}
@user = User.find_for_oauth(env["omniauth.auth"], current_user)
if @user.persisted?
sign_in_and_redirect @user, event: :authentication
else
session["devise.#{provider}_data"] = env["omniauth.auth"]
redirect_to new_user_registration_url
end
end
}
end
[:twitter, :facebook, :google_oauth2].each do |provider|
provides_callback_for provider
end
def after_sign_in_path_for(resource)
auth = request.env['omniauth.auth']
@identity = Identity.find_for_oauth(auth)
@user = User.find(current_user.id)
if @user.persisted?
if @identity.provider == "twitter"
register_info2_path
else
register_info1_path
end
else
home_main_path
end
end
如果您有任何意見或相關文件,請讓我知道。謝謝。