Omniauth“与”STI和设计

时间:2012-11-26 14:42:09

标签: ruby-on-rails devise omniauth

我觉得没有结果。我有一个名为User的模型和带有STI粉丝和艺术家的模型,如下所示:

class User < ActiveRecord::Base
    devise :database_authenticatable, :registerable, :confirmable, :lockable,
     :recoverable, :rememberable, :trackable, :validatable, **:omniauthable**
end

和我的其他模特

Class Artist < User end
Class Fan < User end

我的路线

devise_for :users
devise_for :artists
devise_for :fans

尝试运行我的服务器或其他任何我遇到此错误时遇到问题

Wrong OmniAuth configuration. If you are getting this exception, it means that either:

1) You are manually setting OmniAuth.config.path_prefix and it doesn't match the Devise one
2) You are setting :omniauthable in more than one model
3) You changed your Devise routes/OmniAuth setting and haven't restarted your server

我的应用程序是高级的,不想回去重构它,任何帮助都会很感激

1 个答案:

答案 0 :(得分:4)

答案可以找到here

由于您为三个不同的模型调用devise_for,其中一个使用omniauthable模块,因此Devise变得混乱。

或者:

  1. 删除devise_for以外的所有:users方法。

  2. 或者从用户模型中删除omniauthable模块,创建自己的omniauth路由,并通过将omniauth配置移动到新文件中来停止使用devise的中间件。所以,而不是在devise.rb

    Devise.setup do |config|
      config.omniauth :twitter, ENV['TWITTER_KEY'], ENV['TWITTER_SECRET']
    end
    

    您现在已在新文件omniauth.rb中添加此内容:

    Rails.application.config.middleware.use OmniAuth::Builder do
      provider :twitter, ENV['TWITTER_KEY'], ENV['TWITTER_SECRET']
    end
    

    The Railscast on Simple OmniAuth应该可以帮助您进行设置。