我在 Rails 3 应用程序中使用 devise 和 omniauth-facebook 进行 Facebook 身份验证,基于本教程:将 Facebook auth 添加到 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