Rails 3 アプリで Facebook 認証に devise と omniauth-facebook を使用しました。このチュートリアルに基づいて、Facebook 認証を Rails 3.1 アプリに追加しましたが、うまく機能しています。
しかし今、私は自分のアプリに Facebook を完全に統合して、ユーザーの写真や友達などにアクセスできるようにしたいと考えています。そのためには、fb_graph を使用することを考えています。fb_graph にはトークンが必要です。ユーザー モデルを編集してトークンを保存し、それを fb_graph で使用する方法を知りたいと思っていました。この問題に関するヘルプは非常に高く評価されます。
これは、私のユーザーモデルが現在どのように見えるかです:
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :omniauthable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me
has_many :photos
has_many :scrapbooks
def self.find_for_facebook_oauth(access_token, signed_in_resource=nil)
data = access_token.extra.raw_info
if user = User.where(:email => data.email).first
user
else # Create a user with a stub password.
User.create!(:email => data.email, :password => Devise.friendly_token[0,20])
end
end
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"]
end
end
end
end