Facebook OAuth与Ruby on Rails中的设计

时间:2015-01-06 02:25:23

标签: ruby-on-rails ruby facebook devise omniauth

在花了30多个小时试图找到解决方案并搜索地球的各个角落后,我在这里发布了我的第一个问题。

无论我尝试什么,我都会

  

'参数app_id是必需的'

我已经将文档从https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview

跟到了T.

以下是我认为最重要的部分......任何想法,我可能会缺少什么?

config / initializers / devise.rb

config.omniauth :facebook, ENV["FACEBOOK_APP_ID"], ENV["FACEBOOK_APP_SECRET"], scope: 'user'

我已经检查过我的系统上的env参数是否正确。

user.rb

    class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable, :omniauthable, omniauth_providers: [:facebook]

  def self.new_with_session(params, session)
    super.tap do |user|
      if data = session["devise.facebook_data"] && session["devise.facebook_data"]["extra"]["raw_info"]
        user.email = data["email"] if user.email.blank?
      end
    end
  end

  def self.from_omniauth(auth)
    where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
      user.email = auth.info.email
      user.password = Devise.friendly_token[0,20]
      # user.name = auth.info.name   # assuming the user model has a name
      # user.image = auth.info.image # assuming the user model has an image
    end
  end
end

1 个答案:

答案 0 :(得分:0)

请改为尝试:

config.omniauth :facebook, "xxxxx", "xxxx"

使用config / initializers / devise.rb中的实际值为我工作。