gpt4 book ai didi

ruby-on-rails - 使用 Devise 和 Omniauth 的路由问题

转载 作者:行者123 更新时间:2023-12-04 23:30:07 25 4
gpt4 key购买 nike

我试图让 OAuth 和 Devise 一起工作,但我得到了 Controller::RoutingError (No route matches "/users/auth/facebook/callback"):尝试通过 Facebook 进行身份验证时。

奇怪的是,Google Apps 不会出现这个问题。 (相同的回调路由)。

有任何想法吗?

回调 Controller :

class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController

def facebook
# You need to implement the method below in your model
@user = User.find_for_facebook_oauth(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"] = env["omniauth.auth"]
redirect_to new_user_registration_url
end
end

def google_apps
@user = User.find_for_google_apps_oauth(env["omniauth.auth"], current_user)

if @user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Google Apps"
sign_in_and_redirect @user, :event => :authentication
else
session["devise.google_apps_data"] = env["omniauth.auth"]
redirect_to new_user_registration_url
end
end

def passthru
render :file => "#{Rails.root}/public/404.html", :status => 404, :layout => false
end

end

路线.rb:
devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks" } do
get '/users/auth/:provider' => 'users/omniauth_callbacks#passthru'
end

为什么 :provider => "facebook"触发 RoutingError,但不触发 :provider => "google_apps" ?

最佳答案

找到了:

在设计用户模型中,我有模块::omniauth_providers => [:facebook, :openid, :google_apps]添加了 which(显然)没有做我认为的事情。我删除了该行,现在我的所有身份验证逻辑再次正常工作。

关于ruby-on-rails - 使用 Devise 和 Omniauth 的路由问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6339532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com